2017-07-08 07:39:48 +03:00
|
|
|
hook global BufCreate .*(COMMIT_EDITMSG|MERGE_MSG) %{
|
2017-11-03 10:34:41 +03:00
|
|
|
set-option buffer filetype git-commit
|
2012-07-31 16:22:57 +04:00
|
|
|
}
|
2012-03-09 00:58:22 +04:00
|
|
|
|
2018-07-08 19:10:12 +03:00
|
|
|
hook global BufCreate .*(\.gitconfig|git/config) %{
|
|
|
|
set-option buffer filetype ini
|
|
|
|
}
|
|
|
|
|
2016-09-25 16:15:07 +03:00
|
|
|
hook -group git-commit-highlight global WinSetOption filetype=git-commit %{
|
2018-09-23 11:00:51 +03:00
|
|
|
add-highlighter window/git-commit-highlight regions
|
|
|
|
add-highlighter window/git-commit-highlight/diff region '^diff --git' '^(?=diff --git)' ref diff # highlight potential diffs from the -v option
|
|
|
|
add-highlighter window/git-commit-highlight/comments region '^\h*#' '$' group
|
|
|
|
add-highlighter window/git-commit-highlight/comments/ fill cyan,default
|
|
|
|
add-highlighter window/git-commit-highlight/comments/ regex "\b(?:(modified)|(deleted)|(new file)|(renamed|copied)):([^\n]*)$" 1:yellow 2:red 3:green 4:blue 5:magenta
|
2012-07-31 16:22:57 +04:00
|
|
|
}
|
2012-06-15 16:24:57 +04:00
|
|
|
|
2017-10-28 06:00:51 +03:00
|
|
|
hook -group git-commit-highlight global WinSetOption filetype=(?!git-commit).* %{ remove-highlighter window/git-commit-highlight }
|
2012-06-15 16:24:57 +04:00
|
|
|
|
2012-07-31 16:22:57 +04:00
|
|
|
hook global BufCreate .*git-rebase-todo %{
|
2017-11-03 10:34:41 +03:00
|
|
|
set-option buffer filetype git-rebase
|
2012-07-31 16:22:57 +04:00
|
|
|
}
|
2012-06-15 16:24:57 +04:00
|
|
|
|
2016-09-25 16:15:07 +03:00
|
|
|
hook -group git-rebase-highlight global WinSetOption filetype=git-rebase %{
|
2018-06-28 15:10:22 +03:00
|
|
|
add-highlighter window/git-rebase-highlight group
|
|
|
|
add-highlighter window/git-rebase-highlight/ regex "#[^\n]*\n" 0:cyan,default
|
2018-08-09 17:14:16 +03:00
|
|
|
add-highlighter window/git-rebase-highlight/ regex "^(pick|edit|reword|squash|fixup|exec|drop|label|reset|merge|[persfxdltm]) (\w+)" 1:green 2:magenta
|
2012-07-31 16:22:57 +04:00
|
|
|
}
|
2012-06-15 16:24:57 +04:00
|
|
|
|
2017-10-28 06:00:51 +03:00
|
|
|
hook -group git-rebase-highlight global WinSetOption filetype=(?!git-rebase).* %{ remove-highlighter window/git-rebase-highlight }
|