aboutsummaryrefslogtreecommitdiffstats
path: root/ftdetect/filetype.lua
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@cepl.eu>2022-01-04 19:08:09 +0100
committerMatěj Cepl <mcepl@cepl.eu>2024-03-28 17:06:36 +0100
commitd832273f344eef13fc6e82c7a3e7f0b61988eb58 (patch)
tree58aeba21071e6d5f85d84561a2182b67040a510d /ftdetect/filetype.lua
parent80dc49c8cb0f272460f7a9b24cc81f8f63fd6183 (diff)
downloadvim-suse-changes-d832273f344eef13fc6e82c7a3e7f0b61988eb58.tar.gz
fix(plugin): add filetypes.lua file for the package.
Why in the world spec.vim was in ftdetect/ and not in ftplugin/.
Diffstat (limited to 'ftdetect/filetype.lua')
-rw-r--r--ftdetect/filetype.lua5
1 files changed, 5 insertions, 0 deletions
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",
+ },
+})