2012-07-31 16:22:57 +04:00
|
|
|
hook global BufCreate .*COMMIT_EDITMSG %{
|
2012-06-15 16:24:57 +04:00
|
|
|
setb filetype git-commit
|
2012-07-31 16:22:57 +04:00
|
|
|
}
|
2012-03-09 00:58:22 +04:00
|
|
|
|
2012-07-31 16:22:57 +04:00
|
|
|
hook global WinSetOption filetype=git-commit %{
|
|
|
|
addhl group git-commit-highlight
|
2012-08-07 02:13:54 +04:00
|
|
|
addhl -group git-commit-highlight regex "#[^\n]*\n" 0:cyan,default
|
|
|
|
addhl -group git-commit-highlight regex "\<(modified|deleted|new file):[^\n]*\n" 0:magenta,default
|
|
|
|
addhl -group git-commit-highlight regex "\<(modified|deleted|new file):" 0:red,default
|
2012-07-31 16:22:57 +04:00
|
|
|
}
|
2012-06-15 16:24:57 +04:00
|
|
|
|
2012-07-31 16:22:57 +04:00
|
|
|
hook global WinSetOption filetype=(?!git-commit).* %{
|
2012-06-15 16:24:57 +04:00
|
|
|
rmhl git-commit-highlight
|
2012-07-31 16:22:57 +04:00
|
|
|
}
|
2012-06-15 16:24:57 +04:00
|
|
|
|
2012-07-31 16:22:57 +04:00
|
|
|
hook global BufCreate .*git-rebase-todo %{
|
2012-06-15 16:24:57 +04:00
|
|
|
setb filetype git-rebase
|
2012-07-31 16:22:57 +04:00
|
|
|
}
|
2012-06-15 16:24:57 +04:00
|
|
|
|
2012-07-31 16:22:57 +04:00
|
|
|
hook global WinSetOption filetype=git-rebase %{
|
|
|
|
addhl group git-rebase-highlight
|
2012-08-07 02:13:54 +04:00
|
|
|
addhl -group git-rebase-highlight regex "#[^\n]*\n" 0:cyan,default
|
|
|
|
addhl -group git-rebase-highlight regex "^(pick|edit|reword|squash|fixup|exec|[persfx]) \w+" 0:magenta,default
|
|
|
|
addhl -group git-rebase-highlight regex "^(pick|edit|reword|squash|fixup|exec|[persfx])" 0:green,default
|
2012-07-31 16:22:57 +04:00
|
|
|
}
|
2012-06-15 16:24:57 +04:00
|
|
|
|
2012-07-31 16:22:57 +04:00
|
|
|
hook global WinSetOption filetype=(?!git-rebase).* %{
|
2012-06-15 16:24:57 +04:00
|
|
|
rmhl git-rebase-highlight
|
2012-07-31 16:22:57 +04:00
|
|
|
}
|