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