2 " Language: Blank 1.4.1
3 " Maintainer: Rafal M. Sulejman <unefunge@friko2.onet.pl>
4 " Last change: 21 Jul 2000
6 " For version 5.x: Clear all syntax items
7 " For version 6.x: Quit when a syntax file was already loaded
10 elseif exists("b:current_syntax")
17 syn match blankInstruction "{[:;,\.+\-*$#@/\\`'"!\|><{}\[\]()?xspo\^&\~=_%]}"
20 syn match blankString "\~[^}]"
23 syn match blankNumber "\[[0-9]\+\]"
27 " Define the default highlighting.
28 " For version 5.7 and earlier: only when not done already
29 " For version 5.8 and later: only when an item doesn't have highlighting yet
30 if version >= 508 || !exists("did_blank_syntax_inits")
32 let did_blank_syntax_inits = 1
33 command -nargs=+ HiLink hi link <args>
35 command -nargs=+ HiLink hi def link <args>
38 HiLink blankInstruction Statement
39 HiLink blankNumber Number
40 HiLink blankString String
45 let b:current_syntax = "blank"