summaryrefslogtreecommitdiffstats
path: root/runtime/ftplugin/git.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-12-05 22:47:25 +0100
committerBram Moolenaar <Bram@vim.org>2019-12-05 22:47:25 +0100
commitc08ee7476b19f9b4de5df287797af87c4e3fba0a (patch)
tree2e62f5130c143d521d8155dbf79038047e6b33fe /runtime/ftplugin/git.vim
parente38eab22c1fb950127f0307a9904de6d4561dc70 (diff)
Update runtime files.
Diffstat (limited to 'runtime/ftplugin/git.vim')
-rw-r--r--runtime/ftplugin/git.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/ftplugin/git.vim b/runtime/ftplugin/git.vim
index b3d5cff804..75b20f021e 100644
--- a/runtime/ftplugin/git.vim
+++ b/runtime/ftplugin/git.vim
@@ -1,7 +1,7 @@
" Vim filetype plugin
" Language: generic git output
" Maintainer: Tim Pope <vimNOSPAM@tpope.org>
-" Last Change: 2016 Aug 29
+" Last Change: 2019 Dec 05
" Only do this when not done yet for this buffer
if (exists("b:did_ftplugin"))
@@ -10,7 +10,7 @@ endif
let b:did_ftplugin = 1
if !exists('b:git_dir')
- if expand('%:p') =~# '[\/]\.git[\/]modules[\/]'
+ if expand('%:p') =~# '[\/]\.git[\/]modules[\/]\|:[\/][\/]\|^\a\a\+:'
" Stay out of the way
elseif expand('%:p') =~# '[\/]\.git[\/]worktrees'
let b:git_dir = matchstr(expand('%:p'),'.*\.git[\/]worktrees[\/][^\/]\+\>')