2017-07-08 06:39:48 +02:00
|
|
|
hook global BufCreate .*(COMMIT_EDITMSG|MERGE_MSG) %{
|
2017-11-03 08:34:41 +01:00
|
|
|
set-option 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 %{
|
2018-06-28 14:10:22 +02:00
|
|
|
add-highlighter window/git-commit-highlight group
|
|
|
|
add-highlighter window/git-commit-highlight/ regex "^\h*#[^\n]*\n" 0:cyan,default
|
|
|
|
add-highlighter window/git-commit-highlight/ regex "\b(?:(modified)|(deleted)|(new file)|(renamed|copied)):([^\n]*)\n" 1:yellow 2:red 3:green 4:blue 5:magenta
|
|
|
|
add-highlighter window/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-10-28 05:00:51 +02:00
|
|
|
hook -group git-commit-highlight global WinSetOption filetype=(?!git-commit).* %{ remove-highlighter window/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 %{
|
2017-11-03 08:34:41 +01:00
|
|
|
set-option 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 %{
|
2018-06-28 14:10:22 +02:00
|
|
|
add-highlighter window/git-rebase-highlight group
|
|
|
|
add-highlighter window/git-rebase-highlight/ regex "#[^\n]*\n" 0:cyan,default
|
|
|
|
add-highlighter window/git-rebase-highlight/ regex "^(pick|edit|reword|squash|fixup|exec|delete|[persfx]) (\w+)" 1:green 2:magenta
|
2012-07-31 14:22:57 +02:00
|
|
|
}
|
2012-06-15 14:24:57 +02:00
|
|
|
|
2017-10-28 05:00:51 +02:00
|
|
|
hook -group git-rebase-highlight global WinSetOption filetype=(?!git-rebase).* %{ remove-highlighter window/git-rebase-highlight }
|