3cb159f056
The script only highlights comments in commit messages, but it's a basis to improve upon if more features are needed in a later time.
27 lines
709 B
Plaintext
27 lines
709 B
Plaintext
# https://www.mercurial-scm.org/
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
# Faces
|
|
# ‾‾‾‾‾
|
|
|
|
face MercurialCommitComment cyan
|
|
|
|
# Detection
|
|
# ‾‾‾‾‾‾‾‾‾
|
|
|
|
hook global BufCreate .*hg-editor-\w+\.txt$ %{
|
|
set buffer filetype hg-commit
|
|
}
|
|
|
|
hook -group hg-commit-highlight global WinSetOption filetype=(?!hg-commit).* %{
|
|
remove-highlighter hg-commit-highlight
|
|
}
|
|
|
|
# Highlighters
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
hook -group hg-commit-highlight global WinSetOption filetype=hg-commit %{
|
|
add-highlighter group hg-commit-highlight
|
|
add-highlighter -group hg-commit-highlight regex '^HG:[^\n]*' 0:MercurialCommitComment
|
|
}
|