mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 19:08:09 +01:00
6ee07a9c6d
As discussed in id:871udhcmks.fsf@zancas.localnet, notmuch-vim doesn't really meet the standards of the CLI, emacs interface, or python bindings in terms of being well maintained.
12 lines
383 B
VimL
12 lines
383 B
VimL
" notmuch folders mode syntax file
|
|
|
|
syntax region nmFoldersCount start='^' end='\%10v'
|
|
syntax region nmFoldersName start='\%11v' end='\%31v'
|
|
syntax match nmFoldersSearch /([^()]\+)$/
|
|
|
|
highlight link nmFoldersCount Statement
|
|
highlight link nmFoldersName Type
|
|
highlight link nmFoldersSearch String
|
|
|
|
highlight CursorLine term=reverse cterm=reverse gui=reverse
|
|
|