diff options
author | Christian Clason <c.clason@uni-graz.at> | 2022-01-07 10:27:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-07 10:27:34 +0100 |
commit | bba679c431069396ad28952620316e1f1fd97945 (patch) | |
tree | 4e871f99bd28222e96e067e6601fb69c55a877c9 /runtime/scripts.vim | |
parent | e58071c92c98fa54fcb29ab87ac6de7c02ede27b (diff) | |
download | rneovim-bba679c431069396ad28952620316e1f1fd97945.tar.gz rneovim-bba679c431069396ad28952620316e1f1fd97945.tar.bz2 rneovim-bba679c431069396ad28952620316e1f1fd97945.zip |
vim-patch:8.2.4014: git and gitcommit file types not properly recognized (#16953)
Problem: Git and gitcommit file types not properly recognized.
Solution: Adjust filetype detection. (Tim Pope, closes vim/vim#9477)
https://github.com/vim/vim/commit/c689f8c3d98fffe7e13730e198ce120934528f9c
Diffstat (limited to 'runtime/scripts.vim')
-rw-r--r-- | runtime/scripts.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/scripts.vim b/runtime/scripts.vim index 3790b1c10f..e41405a6c5 100644 --- a/runtime/scripts.vim +++ b/runtime/scripts.vim @@ -384,7 +384,7 @@ else set ft=scheme " Git output - elseif s:line1 =~# '^\(commit\|tree\|object\) \x\{40\}\>\|^tag \S\+$' + elseif s:line1 =~# '^\(commit\|tree\|object\) \x\{40,\}\>\|^tag \S\+$' set ft=git " Gprof (gnu profiler) |