📄 icon.vim
字号:
" Vim syntax file" Language: Icon" Maintainer: Wendell Turner <wendell@adsi-m4.com>" URL: ftp://ftp.halcyon.com/pub/users/wturner/icon.vim" Last Change: 2001 May 4" For version 5.x: Clear all syntax items" For version 6.x: Quit when a syntax file was already loadedif version < 600 syntax clearelseif exists("b:current_syntax") finishendifsyn keyword iconFunction abs acos any args asin atan balsyn keyword iconFunction callout center char chdir close collect copysyn keyword iconFunction cos cset delay delete detab display dtorsyn keyword iconFunction entab errorclear exit exp find flush functionsyn keyword iconFunction get getch getche getenv iand icom imagesyn keyword iconFunction insert integer ior ishift ixor kbhit keysyn keyword iconFunction left list loadfunc log many map matchsyn keyword iconFunction member move name numeric open ord popsyn keyword iconFunction pos proc pull push put read readssyn keyword iconFunction real remove rename repl reverse right rtodsyn keyword iconFunction runerr save seek seq set sin sortsyn keyword iconFunction sortf sqrt stop string system tab tablesyn keyword iconFunction tan trim type upto variable where write writes" Keywordssyn match iconKeyword "&allocated"syn match iconKeyword "&ascii"syn match iconKeyword "&clock"syn match iconKeyword "&collections"syn match iconKeyword "&cset"syn match iconKeyword "¤t"syn match iconKeyword "&date"syn match iconKeyword "&dateline"syn match iconKeyword "&digits"syn match iconKeyword "&dump"syn match iconKeyword "&e"syn match iconKeyword "&error"syn match iconKeyword "&errornumber"syn match iconKeyword "&errortext"syn match iconKeyword "&errorvalue"syn match iconKeyword "&errout"syn match iconKeyword "&fail"syn match iconKeyword "&features"syn match iconKeyword "&file"syn match iconKeyword "&host"syn match iconKeyword "&input"syn match iconKeyword "&lcase"syn match iconKeyword "&letters"syn match iconKeyword "&level"syn match iconKeyword "&line"syn match iconKeyword "&main"syn match iconKeyword "&null"syn match iconKeyword "&output"syn match iconKeyword "&phi"syn match iconKeyword "&pi"syn match iconKeyword "&pos"syn match iconKeyword "&progname"syn match iconKeyword "&random"syn match iconKeyword "®ions"syn match iconKeyword "&source"syn match iconKeyword "&storage"syn match iconKeyword "&subject"syn match iconKeyword "&time"syn match iconKeyword "&trace"syn match iconKeyword "&ucase"syn match iconKeyword "&version"" Reserved wordssyn keyword iconReserved break by case create default dosyn keyword iconReserved else end every fail ifsyn keyword iconReserved initial link next not ofsyn keyword iconReserved procedure repeat return suspendsyn keyword iconReserved then to until while" Storage class reserved wordssyn keyword iconStorageClass global static local recordsyn keyword iconTodo contained TODO FIXME XXX BUG" String and Character constants" Highlight special characters (those which have a backslash) differentlysyn match iconSpecial contained "\\x\x\{2}\|\\\o\{3\}\|\\[bdeflnrtv\"\'\\]\|\\^c[a-zA-Z0-9]\|\\$"syn region iconString start=+"+ skip=+\\\\\|\\"+ end=+"+ contains=iconSpecialsyn region iconCset start=+'+ skip=+\\\\\|\\'+ end=+'+ contains=iconSpecialsyn match iconCharacter "'[^\\]'"" not sure about these"syn match iconSpecialCharacter "'\\[bdeflnrtv]'""syn match iconSpecialCharacter "'\\\o\{3\}'""syn match iconSpecialCharacter "'\\x\x\{2}'""syn match iconSpecialCharacter "'\\^c\[a-zA-Z0-9]'""when wanted, highlight trailing white spaceif exists("icon_space_errors") syn match iconSpaceError "\s*$" syn match iconSpaceError " \+\t"me=e-1endif"catch errors caused by wrong parenthesissyn cluster iconParenGroup contains=iconParenError,iconIncluded,iconSpecial,iconTodo,iconUserCont,iconUserLabel,iconBitFieldsyn region iconParen transparent start='(' end=')' contains=ALLBUT,@iconParenGroupsyn match iconParenError ")"syn match iconInParen contained "[{}]"syn case ignore"integer number, or floating point number without a dotsyn match iconNumber "\<\d\+\>""floating point number, with dot, optional exponentsyn match iconFloat "\<\d\+\.\d*\(e[-+]\=\d\+\)\=\>""floating point number, starting with a dot, optional exponentsyn match iconFloat "\.\d\+\(e[-+]\=\d\+\)\=\>""floating point number, without dot, with exponentsyn match iconFloat "\<\d\+e[-+]\=\d\+\>""radix numbersyn match iconRadix "\<\d\{1,2}[rR][a-zA-Z0-9]\+\>"" syn match iconIdentifier "\<[a-z_][a-z0-9_]*\>"syn case match" Commentsyn match iconComment "#.*" contains=iconTodo,iconSpaceErrorsyn region iconPreCondit start="^\s*$\s*\(if\>\|ifdef\>\|ifndef\>\|elif\>\|else\>\|endif\>\)" skip="\\$" end="$" contains=iconComment,iconString,iconCharacter,iconNumber,iconCommentError,iconSpaceErrorsyn region iconIncluded contained start=+"+ skip=+\\\\\|\\"+ end=+"+syn match iconIncluded contained "<[^>]*>"syn match iconInclude "^\s*$\s*include\>\s*["<]" contains=iconIncluded"syn match iconLineSkip "\\$"syn cluster iconPreProcGroup contains=iconPreCondit,iconIncluded,iconInclude,iconDefine,iconInParen,iconUserLabelsyn region iconDefine start="^\s*$\s*\(define\>\|undef\>\)" skip="\\$" end="$" contains=ALLBUT,@iconPreProcGroup"wt:syn region iconPreProc "start="^\s*#\s*\(pragma\>\|line\>\|warning\>\|warn\>\|error\>\)" skip="\\$" "end="$" contains=ALLBUT,@iconPreProcGroup" Highlight User Labels" syn cluster iconMultiGroup contains=iconIncluded,iconSpecial,iconTodo,iconUserCont,iconUserLabel,iconBitFieldif !exists("icon_minlines") let icon_minlines = 15endifexec "syn sync ccomment iconComment minlines=" . icon_minlines" Define the default highlighting." For version 5.7 and earlier: only when not done already" For version 5.8 and later: only when an item doesn't have highlightingif version >= 508 || !exists("did_icon_syn_inits") if version < 508 let did_icon_syn_inits = 1 command -nargs=+ HiLink hi link <args> else command -nargs=+ HiLink hi def link <args> endif " The default methods for highlighting. Can be overridden later " HiLink iconSpecialCharacter iconSpecial HiLink iconOctalError iconError HiLink iconParenError iconError HiLink iconInParen iconError HiLink iconCommentError iconError HiLink iconSpaceError iconError HiLink iconCommentError iconError HiLink iconIncluded iconString HiLink iconCommentString iconString HiLink iconComment2String iconString HiLink iconCommentSkip iconComment HiLink iconUserLabel Label HiLink iconCharacter Character HiLink iconNumber Number HiLink iconRadix Number HiLink iconFloat Float HiLink iconInclude Include HiLink iconPreProc PreProc HiLink iconDefine Macro HiLink iconError Error HiLink iconStatement Statement HiLink iconPreCondit PreCondit HiLink iconString String HiLink iconCset String HiLink iconComment Comment HiLink iconSpecial SpecialChar HiLink iconTodo Todo HiLink iconStorageClass StorageClass HiLink iconFunction Statement HiLink iconReserved Label HiLink iconKeyword Operator "HiLink iconIdentifier Identifier delcommand HiLinkendiflet b:current_syntax = "icon"
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -