kakoune/rc/base/git.kak

41 lines
1.8 KiB
Plaintext
Raw Normal View History

hook global BufCreate .*(COMMIT_EDITMSG|MERGE_MSG) %{
set-option buffer filetype git-commit
}
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
}
hook -group git-commit-highlight global WinSetOption filetype=git-commit %{
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-06-15 14:24:57 +02:00
hook -once -always window WinSetOption filetype=.* %{ remove-highlighter window/git-commit-highlight }
}
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 %{
add-highlighter window/git-notes-highlight regex '^\h*#[^\n]*$' 0:cyan
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
hook global BufCreate .*git-rebase-todo %{
set-option buffer filetype git-rebase
}
2012-06-15 14:24:57 +02:00
hook -group git-rebase-highlight global WinSetOption filetype=git-rebase %{
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|break|drop|label|reset|merge|[persfxbdltm]) (\w+)" 1:green 2:magenta
2012-06-15 14:24:57 +02:00
hook -once -always window WinSetOption filetype=.* %{ remove-highlighter window/git-rebase-highlight }
}