File: highlighting.vim

package info (click to toggle)
i3-wm 4.25-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 7,676 kB
  • sloc: ansic: 30,144; perl: 19,136; sh: 70; makefile: 9
file content (20 lines) | stat: -rw-r--r-- 519 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
set filetype=i3cmd
syntax case match
syntax clear

syntax keyword i3specStatement state call
highlight link i3specStatement Statement

syntax match i3specComment /#.*/
highlight link i3specComment Comment

syntax region i3specLiteral start=/'/ end=/'/
syntax keyword i3specToken string word number end
highlight link i3specLiteral String
highlight link i3specToken String

syntax match i3specState /[A-Z_]\{3,}/
highlight link i3specState PreProc

syntax match i3specSpecial /[->]/
highlight link i3specSpecial Special