2012-07-31 14:22:57 +02:00
|
|
|
hook global BufCreate .*COMMIT_EDITMSG %{
|
2013-10-30 10:38:40 +01:00
|
|
|
set buffer 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
|
2014-09-11 20:37:34 +02:00
|
|
|
addhl -group git-commit-highlight regex "^\h*#[^\n]*\n" 0:cyan,default
|
2012-12-11 13:50:21 +01:00
|
|
|
addhl -group git-commit-highlight regex "\<(?:(modified)|(deleted)|(new file)|(renamed)):([^\n]*)\n" 1:yellow 2:red 3:green 4:blue 5:magenta
|
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-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 %{
|
2013-10-30 10:38:40 +01:00
|
|
|
set buffer 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
|
2012-08-07 00:13:54 +02:00
|
|
|
addhl -group git-rebase-highlight regex "#[^\n]*\n" 0:cyan,default
|
2012-08-30 18:56:05 +02:00
|
|
|
addhl -group git-rebase-highlight regex "^(pick|edit|reword|squash|fixup|exec|[persfx]) (\w+)" 1:green 2:magenta
|
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).* %{
|
2012-06-15 14:24:57 +02:00
|
|
|
rmhl git-rebase-highlight
|
2012-07-31 14:22:57 +02:00
|
|
|
}
|