From babe3467606ee9722ebc01dd28f524fac75f18af Mon Sep 17 00:00:00 2001 From: Marc Jakobi Date: Wed, 29 Mar 2023 19:44:39 +0200 Subject: [PATCH] fix: add ftplugin to neovim.plugin.dirs (#44) --- CHANGELOG.md | 2 ++ README.md | 1 + bin/luarocks-tag-release-action.lua | 1 + 3 files changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 78b7b41..d5c13ce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - Change license to AGPLv3.0. Note: This does not affect the permission to use this action with a package that has a different license. +### Fixed +- Add `ftplugin` to `{{ neovim.plugin.dirs }}`. ## [v4.0.0] - 2023-03-19 - POTENIALLY BREAKING: Convert to composite action. diff --git a/README.md b/README.md index c474128..0ce2562 100644 --- a/README.md +++ b/README.md @@ -121,6 +121,7 @@ Example: > * compiler > * doc > * filetype.lua +> * ftplugin > * indent > * keymap > * lang diff --git a/bin/luarocks-tag-release-action.lua b/bin/luarocks-tag-release-action.lua index d331f7f..423365e 100644 --- a/bin/luarocks-tag-release-action.lua +++ b/bin/luarocks-tag-release-action.lua @@ -54,6 +54,7 @@ local function insert_neovim_plugin_dirs(copy_directories) 'compiler', 'doc', 'filetype.lua', + 'ftplugin', 'indent', 'keymap', 'lang',