Justin M Keyes wrote: > Via John Whitley: > > Git 2.5 adds a new command git worktree, providing first-class > support for multiple working directories (aka worktrees) per > repository. An update to filetype.vim is needed the gitcommit filetype > paths for the new secondary worktree locations. See diff below. > > > diff --git a/runtime/filetype.vim b/runtime/filetype.vim > index 71d6b0b..dc11c79 100644 > --- a/runtime/filetype.vim > +++ b/runtime/filetype.vim > @@ -774,6 +774,8 @@ au BufNewFile,BufRead *.ged,lltxxxxx.txt setf gedcom > " Git > au BufNewFile,BufRead *.git/COMMIT_EDITMSG setf gitcommit > au BufNewFile,BufRead *.git/MERGE_MSG setf gitcommit > +au BufNewFile,BufRead *.git/worktrees/*/COMMIT_EDITMSG setf gitcommit > +au BufNewFile,BufRead *.git/worktrees/*/MERGE_MSG setf gitcommit > au BufNewFile,BufRead *.git/config,.gitconfig,.gitmodules setf gitconfig > au BufNewFile,BufRead *.git/modules/*/COMMIT_EDITMSG setf gitcommit > au BufNewFile,BufRead *.git/modules/*/config setf gitconfig
I already have this, which should work as well: au BufNewFile,BufRead COMMIT_EDITMSG setf gitcommit au BufNewFile,BufRead MERGE_MSG setf gitcommit au BufNewFile,BufRead *.git/config,.gitconfig,.gitmodules setf gitconfig au BufNewFile,BufRead *.git/modules/*/config setf gitconfig au BufNewFile,BufRead */.config/git/config setf gitconfig -- Veni, Vidi, Video -- I came, I saw, I taped what I saw. /// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ an exciting new programming language -- http://www.Zimbu.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
