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
|
|
|
|
2016-09-25 15:15:07 +02:00
|
|
|
hook -group git-commit-highlight global WinSetOption filetype=git-commit %{
|
2017-01-04 01:07:45 +01:00
|
|
|
add-highlighter group git-commit-highlight
|
|
|
|
add-highlighter -group git-commit-highlight regex "\`[^\n]{1,50}" 0:yellow
|
|
|
|
add-highlighter -group git-commit-highlight regex "\`[^\n]*\n\h*(?!#)([^\n]*)\n?" 1:default,red
|
|
|
|
add-highlighter -group git-commit-highlight regex "^\h*#[^\n]*\n" 0:cyan,default
|
|
|
|
add-highlighter -group git-commit-highlight regex "\b(?:(modified)|(deleted)|(new file)|(renamed)):([^\n]*)\n" 1:yellow 2:red 3:green 4:blue 5:magenta
|
|
|
|
add-highlighter -group git-commit-highlight ref diff # highlight potential diffs from the -v option
|
2012-07-31 14:22:57 +02:00
|
|
|
}
|
2012-06-15 14:24:57 +02:00
|
|
|
|
2017-01-04 01:07:45 +01:00
|
|
|
hook -group git-commit-highlight global WinSetOption filetype=(?!git-commit).* %{ remove-highlighter git-commit-highlight }
|
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
|
|
|
|
2016-09-25 15:15:07 +02:00
|
|
|
hook -group git-rebase-highlight global WinSetOption filetype=git-rebase %{
|
2017-01-04 01:07:45 +01:00
|
|
|
add-highlighter group git-rebase-highlight
|
|
|
|
add-highlighter -group git-rebase-highlight regex "#[^\n]*\n" 0:cyan,default
|
|
|
|
add-highlighter -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
|
|
|
|
2017-01-04 01:07:45 +01:00
|
|
|
hook -group git-rebase-highlight global WinSetOption filetype=(?!git-rebase).* %{ remove-highlighter git-rebase-highlight }
|