Package: vim-runtime Version: 2:7.4.963-1 Severity: minor Tags: patch
syntax/gitrebase.vim doesn't highlight the "drop" keyword. Patch attached. -- Jakub Wilk
--- unpacked/usr/share/vim/vim74/syntax/gitrebase.vim 2015-12-10 13:49:21.000000000 +0100 +++ /usr/share/vim/vim74/syntax/gitrebase.vim 2015-12-14 15:35:36.668042876 +0100 @@ -17,6 +17,7 @@ syn match gitrebaseEdit "\v^e%(dit)=>" nextgroup=gitrebaseCommit skipwhite syn match gitrebaseSquash "\v^s%(quash)=>" nextgroup=gitrebaseCommit skipwhite syn match gitrebaseFixup "\v^f%(ixup)=>" nextgroup=gitrebaseCommit skipwhite +syn match gitrebaseDrop "\v^d%(rop)=>" nextgroup=gitrebaseCommit skipwhite syn match gitrebaseExec "\v^%(x|exec)>" nextgroup=gitrebaseCommand skipwhite syn match gitrebaseSummary ".*" contains=gitrebaseHash contained syn match gitrebaseCommand ".*" contained @@ -30,6 +31,7 @@ hi def link gitrebaseEdit PreProc hi def link gitrebaseSquash Type hi def link gitrebaseFixup Special +hi def link gitrebaseDrop PreCondit hi def link gitrebaseExec Function hi def link gitrebaseSummary String hi def link gitrebaseComment Comment

