git.kak: use filetype option
This commit is contained in:
parent
77d3f4d5b1
commit
d1c4a655b9
|
@ -1,12 +1,23 @@
|
||||||
hook global WinCreate .*COMMIT_EDITMSG \
|
hook global BufCreate .*COMMIT_EDITMSG \
|
||||||
addhl group hlgit; \
|
setb filetype git-commit
|
||||||
addhl -group hlgit regex "#[^\n]*\n" cyan default; \
|
|
||||||
addhl -group hlgit regex "\<(modified|deleted|new file):[^\n]*\n" magenta default; \
|
|
||||||
addhl -group hlgit regex "\<(modified|deleted|new file):" red default;
|
|
||||||
|
|
||||||
hook global WinCreate .*git-rebase-todo \
|
hook global WinSetOption filetype=git-commit \
|
||||||
addhl group hlgit; \
|
addhl group git-commit-highlight; \
|
||||||
addhl -group hlgit regex "#[^\n]*\n" cyan default; \
|
addhl -group git-commit-highlight regex "#[^\n]*\n" cyan default; \
|
||||||
addhl -group hlgit regex "^(pick|edit|reword|squash|fixup|exec|[persfx]) \w+" magenta default; \
|
addhl -group git-commit-highlight regex "\<(modified|deleted|new file):[^\n]*\n" magenta default; \
|
||||||
addhl -group hlgit regex "^(pick|edit|reword|squash|fixup|exec|[persfx])" green default;
|
addhl -group git-commit-highlight regex "\<(modified|deleted|new file):" red default;
|
||||||
|
|
||||||
|
hook global WinSetOption filetype=(?!git-commit).* \
|
||||||
|
rmhl git-commit-highlight
|
||||||
|
|
||||||
|
hook global BufCreate .*git-rebase-todo \
|
||||||
|
setb filetype git-rebase
|
||||||
|
|
||||||
|
hook global WinSetOption filetype=git-rebase \
|
||||||
|
addhl group git-rebase-highlight; \
|
||||||
|
addhl -group git-rebase-highlight regex "#[^\n]*\n" cyan default; \
|
||||||
|
addhl -group git-rebase-highlight regex "^(pick|edit|reword|squash|fixup|exec|[persfx]) \w+" magenta default; \
|
||||||
|
addhl -group git-rebase-highlight regex "^(pick|edit|reword|squash|fixup|exec|[persfx])" green default;
|
||||||
|
|
||||||
|
hook global WinSetOption filetype=(?!git-rebase).* \
|
||||||
|
rmhl git-rebase-highlight
|
||||||
|
|
Loading…
Reference in New Issue
Block a user