From d832273f344eef13fc6e82c7a3e7f0b61988eb58 Mon Sep 17 00:00:00 2001 From: Matěj Cepl Date: Tue, 4 Jan 2022 19:08:09 +0100 Subject: fix(plugin): add filetypes.lua file for the package. Why in the world spec.vim was in ftdetect/ and not in ftplugin/. --- ftdetect/filetype.lua | 5 +++++ ftdetect/spec.vim | 2 -- 2 files changed, 5 insertions(+), 2 deletions(-) create mode 100644 ftdetect/filetype.lua delete mode 100644 ftdetect/spec.vim (limited to 'ftdetect') diff --git a/ftdetect/filetype.lua b/ftdetect/filetype.lua new file mode 100644 index 0000000..3093c7a --- /dev/null +++ b/ftdetect/filetype.lua @@ -0,0 +1,5 @@ +vim.filetype.add({ + extension = { + changes = "changes", + }, +}) diff --git a/ftdetect/spec.vim b/ftdetect/spec.vim deleted file mode 100644 index 1b1fe77..0000000 --- a/ftdetect/spec.vim +++ /dev/null @@ -1,2 +0,0 @@ -let &iskeyword.=",/,-,#" -set keywordprg=osurl -- cgit