summaryrefslogtreecommitdiff
path: root/Util/vim
diff options
context:
space:
mode:
authorGravatar MichalMoskal <unknown>2010-06-21 18:05:37 +0000
committerGravatar MichalMoskal <unknown>2010-06-21 18:05:37 +0000
commit266595b02c986e9b18327ac2494893d3185d919e (patch)
tree0d492872b84a6bb1b232a6eb07515ecdaf9519ac /Util/vim
parentaad763551606106bb3f6899c6fd3e42a393c1cb1 (diff)
VIM syntax file for BPL. I just had it laying around.
Diffstat (limited to 'Util/vim')
-rw-r--r--Util/vim/syntax/boogie.vim95
1 files changed, 95 insertions, 0 deletions
diff --git a/Util/vim/syntax/boogie.vim b/Util/vim/syntax/boogie.vim
new file mode 100644
index 00000000..667a2b8c
--- /dev/null
+++ b/Util/vim/syntax/boogie.vim
@@ -0,0 +1,95 @@
+" Vim syntax file
+" Language: BoogiePL
+" Maintainer: Michal Moskal <Michal.Moskal@microsoft.com>
+" Last Change: Fri Mar 14 13:47:43 WEST 2008
+" Filenames: *.bpl
+
+if exists("b:current_syntax")
+ finish
+endif
+
+let s:bpl_cpo_save = &cpo
+set cpo&vim
+
+
+" type
+syn keyword bplType bool int
+" repeat / condition / label
+syn keyword bplExpr forall exists cast returns lambda
+syn keyword bplStmt goto return while call else if assert assume havoc then
+syn keyword bplDecl axiom function procedure type requires ensures modifies unique const var free implementation invariant
+" user labels
+syn match bplLabel display +^\s*\I\i*\s*:\([^:=]\|$\)\@=+
+syn keyword bplConstant false null true
+
+syn match bplIdentifier display "[A-Za-z0-9_.$#^]\+"
+
+
+" Comments
+"
+" PROVIDES: @bplCommentHook
+"
+" TODO: include strings ?
+"
+syn keyword bplTodo contained TODO FIXME XXX NOTE
+syn region bplComment start="/\*" end="\*/" contains=@bplCommentHook,bplTodo,@Spell
+syn match bplComment "//.*$" contains=@bplCommentHook,bplTodo,@Spell
+
+" [1] 9.5 Pre-processing directives
+syn region bplPreCondit
+ \ start="^\s*#\s*\(define\|undef\|if\|elif\|else\|endif\|line\|error\|warning\)"
+ \ skip="\\$" end="$" contains=bplComment keepend
+syn region bplRegion matchgroup=bplPreCondit start="^\s*#\s*region.*$"
+ \ end="^\s*#\s*endregion" transparent fold contains=TOP
+
+
+" Strings and constants
+syn match bplSpecialError contained "\\."
+syn match bplSpecialCharError contained "[^']"
+" [1] 9.4.4.4 Character literals
+syn match bplSpecialChar contained +\\["\\'0abfnrtvx]+
+" unicode characters
+syn match bplUnicodeNumber +\\\(u\x\{4}\|U\x\{8}\)+ contained contains=bplUnicodeSpecifier
+syn match bplUnicodeSpecifier +\\[uU]+ contained
+syn region bplVerbatimString start=+@"+ end=+"+ end=+$+ skip=+""+ contains=bplVerbatimSpec,@Spell
+syn match bplVerbatimSpec +@"+he=s+1 contained
+syn region bplString start=+"+ end=+"+ end=+$+ contains=bplSpecialChar,bplSpecialError,bplUnicodeNumber,@Spell
+syn match bplCharacter "'[^']*'" contains=bplSpecialChar,bplSpecialCharError
+syn match bplCharacter "'\\''" contains=bplSpecialChar
+syn match bplCharacter "'[^\\]'"
+syn match bplNumber "\<\(0[0-7]*\|0[xX]\x\+\|\d\+\)[lL]\=\>"
+syn match bplNumber "\(\<\d\+\.\d*\|\.\d\+\)\([eE][-+]\=\d\+\)\=[fFdD]\="
+syn match bplNumber "\<\d\+[eE][-+]\=\d\+[fFdD]\=\>"
+syn match bplNumber "\<\d\+\([eE][-+]\=\d\+\)\=[fFdD]\>"
+
+" The default highlighting.
+hi def link bplType Type
+hi def link bplDecl Conditional
+hi def link bplStmt Conditional
+hi def link bplLabel Label
+hi def link bplExpr StorageClass
+hi def link bplConstant Constant
+
+hi def link bplTodo Todo
+hi def link bplComment Comment
+
+hi def link bplSpecialError Error
+hi def link bplSpecialCharError Error
+hi def link bplString String
+hi def link bplVerbatimString String
+hi def link bplVerbatimSpec SpecialChar
+hi def link bplPreCondit PreCondit
+hi def link bplCharacter Character
+hi def link bplSpecialChar SpecialChar
+hi def link bplNumber Number
+hi def link bplUnicodeNumber SpecialChar
+hi def link bplUnicodeSpecifier SpecialChar
+
+let b:current_syntax = "bpl"
+
+let &cpo = s:bpl_cpo_save
+unlet s:bpl_cpo_save
+
+set efm+=%f(%l\\,%c):\ %m
+
+" vim: ts=8