diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-08-15 14:07:23 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-08-15 14:07:23 +0200 |
commit | 9a5c553f790f74e4c36295ce5d46c1aa7d13eae6 (patch) | |
tree | 59cd47e95ecfe17004e9016bfd76bf30aef93ca2 /runtime | |
parent | 793dcc540d96557919ae7dff9b2b3e21386a2e88 (diff) | |
download | vim-git-9a5c553f790f74e4c36295ce5d46c1aa7d13eae6.tar.gz |
patch 8.2.1458: .gawk files not recognizedv8.2.1458
Problem: .gawk files not recognized.
Solution: Recognize .gawk files. (Doug Kearns)
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 dfbfaabae..ae6dc6f1d 100644 --- a/runtime/filetype.vim +++ b/runtime/filetype.vim @@ -184,7 +184,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 |