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
|
|
|
|
}
|
|
|
|
|
2022-05-03 23:49:10 +02:00
|
|
|
hook global BufCreate .*(\.git(config|modules)|git/config) %{
|
2018-07-08 18:10:12 +02:00
|
|
|
set-option buffer filetype ini
|
|
|
|
}
|
|
|
|
|
2022-05-08 04:08:12 +02:00
|
|
|
hook global BufCreate .*\.gitignore %{
|
|
|
|
set-option buffer filetype git-ignore
|
|
|
|
}
|
|
|
|
|
2019-03-13 19:15:59 +01:00
|
|
|
hook global BufCreate .*git-rebase-todo %{
|
|
|
|
set-option buffer filetype git-rebase
|
|
|
|
}
|
|
|
|
|
2022-05-08 04:08:12 +02:00
|
|
|
hook global WinSetOption filetype=git-(commit|ignore|notes|rebase) %{
|
2019-04-11 01:48:46 +02:00
|
|
|
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
|
|
|
|
2022-05-08 04:08:12 +02:00
|
|
|
hook -group git-ignore-highlight global WinSetOption filetype=git-ignore %{
|
|
|
|
add-highlighter window/git-ignore ref git-ignore
|
|
|
|
hook -once -always window WinSetOption filetype=.* %{ remove-highlighter window/git-ignore }
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2019-04-11 01:48:46 +02:00
|
|
|
provide-module git-commit %{
|
2022-01-24 17:09:44 +01:00
|
|
|
require-module diff
|
2019-04-11 01:48:46 +02:00
|
|
|
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
|
2020-09-23 19:24:24 +02:00
|
|
|
add-highlighter shared/git-commit/comments region ^# $ group
|
2019-04-11 01:48:46 +02:00
|
|
|
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
|
|
|
|
2022-05-08 04:08:12 +02:00
|
|
|
provide-module git-ignore %{
|
|
|
|
add-highlighter shared/git-ignore group
|
2022-05-09 17:28:37 +02:00
|
|
|
add-highlighter shared/git-ignore/glob regex '(?<!\\)(?:\\\\)*\K(\*\*?|\?|\[.*?(?<!\\)(?:\\\\)*\])' 0:operator
|
2022-05-08 04:08:12 +02:00
|
|
|
add-highlighter shared/git-ignore/negate regex '^!' 0:operator
|
|
|
|
add-highlighter shared/git-ignore/comments regex '^#.*?$' 0:comment
|
|
|
|
}
|
|
|
|
|
2019-04-11 01:48:46 +02:00
|
|
|
provide-module git-notes %{
|
2020-09-23 19:24:24 +02:00
|
|
|
add-highlighter shared/git-notes regex ^#[^\n]*$ 0:comment
|
2019-04-11 01:48:46 +02:00
|
|
|
}
|
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
|
2020-09-23 19:24:24 +02:00
|
|
|
add-highlighter shared/git-rebase/ regex "^\h*#[^\n]*\n" 0:comment
|
2019-12-08 13:37:49 +01:00
|
|
|
add-highlighter shared/git-rebase/ regex "^(?:(pick|p)|(edit|reword|squash|fixup|exec|break|drop|label|reset|merge|[ersfxbdltm])) (\w+)" 1:keyword 2:value 3:meta
|
2019-04-11 01:48:46 +02:00
|
|
|
}
|