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
|
|
|
|
2018-09-28 16:46:18 +02:00
|
|
|
hook global BufCreate .*/NOTES_EDITMSG %{
|
|
|
|
set-option buffer filetype git-notes
|
|
|
|
}
|
|
|
|
|
2018-07-08 18:10:12 +02:00
|
|
|
hook global BufCreate .*(\.gitconfig|git/config) %{
|
|
|
|
set-option buffer filetype ini
|
|
|
|
}
|
|
|
|
|
2016-09-25 15:15:07 +02:00
|
|
|
hook -group git-commit-highlight global WinSetOption filetype=git-commit %{
|
2018-09-23 10:00:51 +02: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
|
2018-11-28 10:39:15 +01:00
|
|
|
add-highlighter window/git-commit-highlight/comments region '^\h*#' '$' group
|
2018-08-09 11:27:40 +02:00
|
|
|
add-highlighter window/git-commit-highlight/comments/ fill comment
|
2018-09-23 10:00:51 +02:00
|
|
|
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-06-15 14:24:57 +02:00
|
|
|
|
2018-12-11 00:11:35 +01:00
|
|
|
hook -once -always window WinSetOption filetype=.* %{ remove-highlighter window/git-commit-highlight }
|
2018-11-28 10:39:15 +01:00
|
|
|
}
|
2012-06-15 14:24:57 +02:00
|
|
|
|
2018-09-28 16:46:18 +02:00
|
|
|
hook -group git-commit-highlight global WinSetOption filetype=git-notes %{
|
2018-08-09 11:27:40 +02:00
|
|
|
add-highlighter window/git-notes-highlight regex '^\h*#[^\n]*$' 0:comment
|
2018-09-28 16:46:18 +02:00
|
|
|
|
2018-12-27 20:40:13 +01:00
|
|
|
hook -once -always window WinSetOption filetype=.* %{ remove-highlighter window/git-notes-highlight }
|
|
|
|
}
|
2012-06-15 14:24:57 +02:00
|
|
|
|
2018-09-28 16:46:18 +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
|
2018-08-09 11:27:40 +02:00
|
|
|
add-highlighter window/git-rebase-highlight/ regex "#[^\n]*\n" 0:comment
|
|
|
|
add-highlighter window/git-rebase-highlight/ regex "^(pick|edit|reword|squash|fixup|exec|break|drop|label|reset|merge|[persfxbdltm]) (\w+)" 1:keyword 2:meta
|
2012-06-15 14:24:57 +02:00
|
|
|
|
2018-12-11 00:11:35 +01:00
|
|
|
hook -once -always window WinSetOption filetype=.* %{ remove-highlighter window/git-rebase-highlight }
|
2018-11-28 10:39:15 +01:00
|
|
|
}
|