From: Bram Moolenaar Date: Sat, 15 Aug 2020 12:07:23 +0000 (+0200) Subject: patch 8.2.1458: .gawk files not recognized X-Git-Tag: v8.2.1458 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9a5c553f790f74e4c36295ce5d46c1aa7d13eae6;p=vim patch 8.2.1458: .gawk files not recognized Problem: .gawk files not recognized. Solution: Recognize .gawk files. (Doug Kearns) --- 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 diff --git a/src/testdir/test_filetype.vim b/src/testdir/test_filetype.vim index cd7200817..8b9f5565d 100644 --- a/src/testdir/test_filetype.vim +++ b/src/testdir/test_filetype.vim @@ -73,7 +73,7 @@ let s:filename_checks = { \ 'autoit': ['file.au3'], \ 'automake': ['GNUmakefile.am'], \ 'ave': ['file.ave'], - \ 'awk': ['file.awk'], + \ 'awk': ['file.awk', 'file.gawk'], \ 'b': ['file.mch', 'file.ref', 'file.imp'], \ 'bc': ['file.bc'], \ 'bdf': ['file.bdf'], @@ -597,7 +597,8 @@ let s:script_checks = { \ 'bc': [['#!/path/bc']], \ 'sed': [['#!/path/sed']], \ 'ocaml': [['#!/path/ocaml']], - \ 'awk': [['#!/path/awk']], + \ 'awk': [['#!/path/awk'], + \ ['#!/path/gawk']], \ 'wml': [['#!/path/wml']], \ 'scheme': [['#!/path/scheme']], \ 'cfengine': [['#!/path/cfengine']], diff --git a/src/version.c b/src/version.c index 4c191e220..b389ee560 100644 --- a/src/version.c +++ b/src/version.c @@ -754,6 +754,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1458, /**/ 1457, /**/