diff options
author | Christian Clason <c.clason@uni-graz.at> | 2022-09-24 12:59:37 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-24 12:59:37 +0200 |
commit | f8b656c582c6f0d9cb35523ac2d2f3d0edbcd52b (patch) | |
tree | c2fcb0b22d42d0b6c20505c522a4761fe9fa621b /runtime/lua/vim | |
parent | caf5738fa9cc12fd448a9c0787a3ebf0c8e696e9 (diff) | |
download | rneovim-f8b656c582c6f0d9cb35523ac2d2f3d0edbcd52b.tar.gz rneovim-f8b656c582c6f0d9cb35523ac2d2f3d0edbcd52b.tar.bz2 rneovim-f8b656c582c6f0d9cb35523ac2d2f3d0edbcd52b.zip |
vim-patch:9.0.0566: Nim files are not recognized (#20317)
Problem: Nim files are not recognized.
Solution: Add patterns for Nim files. (Nbiba Bedis, closes vim/vim#11205)
https://github.com/vim/vim/commit/9fd1583c839c5e43b0d48ec815a79005a2364776
Diffstat (limited to 'runtime/lua/vim')
-rw-r--r-- | runtime/lua/vim/filetype.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/runtime/lua/vim/filetype.lua b/runtime/lua/vim/filetype.lua index c96ead323b..d8ede33dfa 100644 --- a/runtime/lua/vim/filetype.lua +++ b/runtime/lua/vim/filetype.lua @@ -704,6 +704,9 @@ local extension = { nanorc = 'nanorc', ncf = 'ncf', nginx = 'nginx', + nim = 'nim', + nims = 'nim', + nimble = 'nim', ninja = 'ninja', nix = 'nix', nqc = 'nqc', |