mirror of
https://github.com/mawww/kakoune.git
synced 2024-11-25 10:32:19 +03:00
12 lines
381 B
Plaintext
12 lines
381 B
Plaintext
hook global BufCreate .*\.(diff|patch) %{
|
|
set buffer filetype diff
|
|
}
|
|
|
|
addhl -group / group diff
|
|
addhl -group /diff regex "^\+[^\n]*\n" 0:green,default
|
|
addhl -group /diff regex "^-[^\n]*\n" 0:red,default
|
|
addhl -group /diff regex "^@@[^\n]*@@" 0:cyan,default
|
|
|
|
hook global WinSetOption filetype=diff %{ addhl ref diff }
|
|
hook global WinSetOption filetype=(?!diff).* %{ rmhl diff }
|