diff options
author | Christian Clason <c.clason@uni-graz.at> | 2022-04-09 17:43:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-09 17:43:33 +0200 |
commit | 61bd5426f4ef0d8f45d0972f7da870131ae278ba (patch) | |
tree | a618f6e7c57e2710478c9cbbe2ff1535fb0a63e1 /runtime/lua/vim | |
parent | 3280dc2b60db8d4e36bff6d481e3e873f32040b1 (diff) | |
download | rneovim-61bd5426f4ef0d8f45d0972f7da870131ae278ba.tar.gz rneovim-61bd5426f4ef0d8f45d0972f7da870131ae278ba.tar.bz2 rneovim-61bd5426f4ef0d8f45d0972f7da870131ae278ba.zip |
vim-patch:8.2.4721: cooklang files are not recognized (#18058)
Problem: Cooklang files are not recognized.
Solution: recognize *.cook files. (Goc Dundar, closes vim/vim#10120)
https://github.com/vim/vim/commit/36951ed1dab2b2e816dc8959c72b5732f36d9e3b
Diffstat (limited to 'runtime/lua/vim')
-rw-r--r-- | runtime/lua/vim/filetype.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/lua/vim/filetype.lua b/runtime/lua/vim/filetype.lua index 9397788e9e..880b99a2fa 100644 --- a/runtime/lua/vim/filetype.lua +++ b/runtime/lua/vim/filetype.lua @@ -95,6 +95,7 @@ local extension = { clj = "clojure", cljc = "clojure", cljs = "clojure", + cook = "cook", cmake = "cmake", cmod = "cmod", lib = "cobol", |