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
|
|
|
|
}
|
|
|
|
|
2019-03-13 19:15:59 +01:00
|
|
|
hook global BufCreate .*git-rebase-todo %{
|
|
|
|
set-option buffer filetype git-rebase
|
|
|
|
}
|
|
|
|
|
2019-04-11 01:48:46 +02:00
|
|
|
hook global WinSetOption filetype=git-(commit|notes|rebase) %{
|
|
|
|
require-module "git-%val{hook_param_capture_1}"
|
2019-03-13 19:15:59 +01:00
|
|
|
}
|
|
|
|
|
2016-09-25 15:15:07 +02:00
|
|
|
hook -group git-commit-highlight global WinSetOption filetype=git-commit %{
|
2019-04-11 01:48:46 +02:00
|
|
|
add-highlighter window/git-commit ref git-commit
|
|
|
|
hook -once -always window WinSetOption filetype=.* %{ remove-highlighter window/git-commit }
|
|
|
|
}
|
2012-06-15 14:24:57 +02:00
|
|
|
|
2019-04-11 01:48:46 +02:00
|
|
|
hook -group git-notes-highlight global WinSetOption filetype=git-notes %{
|
|
|
|
add-highlighter window/git-notes ref git-notes
|
|
|
|
hook -once -always window WinSetOption filetype=.* %{ remove-highlighter window/git-notes }
|
|
|
|
}
|
2012-06-15 14:24:57 +02:00
|
|
|
|
2019-04-11 01:48:46 +02:00
|
|
|
hook -group git-rebase-highlight global WinSetOption filetype=git-rebase %{
|
|
|
|
add-highlighter window/git-rebase ref git-rebase
|
|
|
|
hook -once -always window WinSetOption filetype=.* %{ remove-highlighter window/git-rebase }
|
|
|
|
}
|
2018-09-28 16:46:18 +02:00
|
|
|
|
2012-06-15 14:24:57 +02:00
|
|
|
|
2019-04-11 01:48:46 +02:00
|
|
|
provide-module git-commit %{
|
|
|
|
add-highlighter shared/git-commit regions
|
|
|
|
add-highlighter shared/git-commit/diff region '^diff --git' '^(?=diff --git)' ref diff # highlight potential diffs from the -v option
|
|
|
|
add-highlighter shared/git-commit/comments region '^\h*#' '$' group
|
|
|
|
add-highlighter shared/git-commit/comments/ fill comment
|
|
|
|
add-highlighter shared/git-commit/comments/ regex "\b(?:(modified)|(deleted)|(new file)|(renamed|copied)):([^\n]*)$" 1:yellow 2:red 3:green 4:blue 5:magenta
|
|
|
|
}
|
2018-09-28 16:46:18 +02:00
|
|
|
|
2019-04-11 01:48:46 +02:00
|
|
|
provide-module git-notes %{
|
|
|
|
add-highlighter shared/git-notes regex '^\h*#[^\n]*$' 0:comment
|
|
|
|
}
|
2012-06-15 14:24:57 +02:00
|
|
|
|
2019-04-11 01:48:46 +02:00
|
|
|
provide-module git-rebase %{
|
|
|
|
add-highlighter shared/git-rebase group
|
|
|
|
add-highlighter shared/git-rebase/ regex "#[^\n]*\n" 0:comment
|
|
|
|
add-highlighter shared/git-rebase/ regex "^(pick|edit|reword|squash|fixup|exec|break|drop|label|reset|merge|[persfxbdltm]) (\w+)" 1:keyword 2:meta
|
|
|
|
}
|