diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-08-15 10:54:17 -0400 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-08-15 10:57:16 -0400 |
commit | afc6753f64a238a36cc66ec47a97aacca5e06b9d (patch) | |
tree | da54c92c1e4e611b55f4819a14ae2c277ed56f38 /runtime | |
parent | 4a0dbe866f70e2adfea78392cdb516e3364ebe4b (diff) | |
download | rneovim-afc6753f64a238a36cc66ec47a97aacca5e06b9d.tar.gz rneovim-afc6753f64a238a36cc66ec47a97aacca5e06b9d.tar.bz2 rneovim-afc6753f64a238a36cc66ec47a97aacca5e06b9d.zip |
vim-patch:8.2.1458: .gawk files not recognized
Problem: .gawk files not recognized.
Solution: Recognize .gawk files. (Doug Kearns)
https://github.com/vim/vim/commit/9a5c553f790f74e4c36295ce5d46c1aa7d13eae6
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/filetype.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/filetype.vim b/runtime/filetype.vim index 9ccb57bed0..41a9188905 100644 --- a/runtime/filetype.vim +++ b/runtime/filetype.vim @@ -180,7 +180,7 @@ au BufNewFile,BufRead *.at setf m4 au BufNewFile,BufRead *.ave setf ave " Awk -au BufNewFile,BufRead *.awk setf awk +au BufNewFile,BufRead *.awk,*.gawk setf awk " B au BufNewFile,BufRead *.mch,*.ref,*.imp setf b |