diff options
author | Christian Clason <c.clason@uni-graz.at> | 2024-05-23 22:51:57 +0200 |
---|---|---|
committer | Christian Clason <c.clason@uni-graz.at> | 2024-05-23 23:47:13 +0200 |
commit | 0d3d198109ff971c1537dc5361437d0397dba7af (patch) | |
tree | 348398c78b87f423644753f360b47f4ba185e4f3 /runtime/lua/vim | |
parent | 9b9f54e2c1cd3a1aae7de33a5d0e70be8d57b1fd (diff) | |
download | rneovim-0d3d198109ff971c1537dc5361437d0397dba7af.tar.gz rneovim-0d3d198109ff971c1537dc5361437d0397dba7af.tar.bz2 rneovim-0d3d198109ff971c1537dc5361437d0397dba7af.zip |
vim-patch:9.1.0435: filetype: cygport files are not recognized
Problem: filetype: cygport files are not recognized
Solution: Recognize '*.cygport' files as sh filetype
(Ken Takata)
https://cygwin.github.io/cygport/cygport_in.html
closes: vim/vim#14833
https://github.com/vim/vim/commit/cd79f8fbd34cdb918153d9fa3821eb4092b7b5fc
Co-authored-by: K.Takata <kentkt@csc.jp>
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 b158cd83ba..d1fdd0aa16 100644 --- a/runtime/lua/vim/filetype.lua +++ b/runtime/lua/vim/filetype.lua @@ -948,6 +948,7 @@ local extension = { sexp = 'sexplib', bash = detect.bash, bats = detect.bash, + cygport = detect.bash, ebuild = detect.bash, eclass = detect.bash, env = detect.sh, |