File: pcap.vim

package info (click to toggle)
vim-rt 5.3-12
  • links: PTS
  • area: main
  • in suites: slink
  • size: 3,172 kB
  • ctags: 815
  • sloc: makefile: 857; awk: 778; ansic: 379; perl: 192; sh: 167
file content (43 lines) | stat: -rw-r--r-- 1,481 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
" Vim syntax file
" Config file:	printcap
" Maintainer:	Lennart Schultz <Lennart.Schultz@ecmwf.int>
" Last change:	1998 March 18

"define keywords
se isk=@,46-57,_,-,#,=,192-255
" Remove any old syntax stuff hanging around
syn clear
"first all the bad guys
syn match pcapBad '^.\+$'              "define any line as bad
syn match pcapBadword '\k\+' contained "define any sequence of keywords as bad
syn match pcapBadword ':' contained    "define any single : as bad
syn match pcapBadword '\\' contained   "define any single \ as bad
"then the good boys
" Boolean keywords
syn match pcapKeyword contained ':\(fo\|hl\|ic\|rs\|rw\|sb\|sc\|sf\|sh\)'
" Numeric Keywords
syn match pcapKeyword contained ':\(br\|du\|fc\|fs\|mx\|pc\|pl\|pw\|px\|py\|xc\|xs\)#\d\+'
" String Keywords
syn match pcapKeyword contained ':\(af\|cf\|df\|ff\|gf\|if\|lf\|lo\|lp\|nd\|nf\|of\|rf\|rg\|rm\|rp\|sd\|st\|tf\|tr\|vf\)=\k*'
" allow continuation
syn match pcapEnd ':\\$' contained
"
syn match pcapDefineLast '^\s\+.\+$' contains=pcapBadword,pcapKeyword 
syn match pcapDefine '^\s\+.\+$' contains=pcapBadword,pcapKeyword,pcapEnd 
syn match pcapHeader '^\k.\+\(|\k.\+\)*:\\$' 
syn match pcapComment "#.*$" 

syn sync minlines=50


if !exists("did_pcap_syntax_inits")
  let did_pcap_syntax_inits = 1
  " The default methods for highlighting.  Can be overridden later
  hi link pcapBad WarningMsg
  hi link pcapBadword WarningMsg
  hi link pcapComment Comment
endif

let b:current_syntax = "pcap"

" vim: ts=8