kakoune/rc/filetype/git.kak

54 lines
2.0 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
}
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
}
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|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
}