vim-nomsu/syntax/nomsu.vim

126 lines
4.8 KiB
VimL
Raw Normal View History

2017-09-12 23:00:42 -07:00
" Language: Nomsu
" Maintainer: Bruce Hill <bruce@bruce-hill.com>
" License: WTFPL
" Bail if our syntax is already loaded.
if exists('b:current_syntax') && b:current_syntax == 'nomsu'
finish
endif
" Highlight long strings.
syn sync minlines=100
2018-07-24 13:41:50 -07:00
"hi def link nomsuInterpDelim PreProc
hi nomsuInterpDelim ctermfg=Gray
2021-02-07 18:48:51 -08:00
syn region nomsuLineComment start=;//; end=/$/
hi nomsuLineComment ctermfg=DarkBlue
hi def link nomsuLineComment Comment
2017-09-12 23:00:42 -07:00
2018-12-18 15:33:25 -08:00
syn region nomsuList start=/\[/ end=/\]/ contains=@nomsuAll
2018-05-15 17:29:26 -07:00
hi nomsuList ctermfg=Blue
2018-12-18 15:33:25 -08:00
syn region nomsuDict start=/{/ end=/}/ contains=@nomsuAll
2018-05-15 17:29:26 -07:00
hi nomsuDict ctermfg=Green
2018-12-18 15:33:25 -08:00
syn region nomsuParenGroup start=/(/ end=/)/ contains=@nomsuAll
hi nomsuParenGroup ctermfg=Yellow
2018-05-15 17:29:26 -07:00
syn match nomsuTextBackslash /\\\%(\\\|;\)\@=/ nextgroup=nomsuTextEscapedBackslash contained
2018-07-24 13:41:50 -07:00
hi nomsuTextBackslash ctermfg=Gray
syn match nomsuTextEscapedChar /\%(\\\)\@<=\%(\x\{1,3}\|x\x\{1,2}\|.\)/ contained
2018-12-13 17:17:08 -08:00
hi nomsuTextEscapedChar cterm=bold ctermfg=Blue
2018-07-24 13:41:50 -07:00
syn match nomsuTextEscapedBackslash /./ contained
2018-12-13 17:17:08 -08:00
hi nomsuTextEscapedBackslash cterm=bold ctermfg=Blue
syn match nomsuTextEscape /\\\%(\x\{1,3}\|x\x\{1,2}\|.\)/ contains=nomsuTextEscapedChar contained
2018-07-24 13:41:50 -07:00
hi nomsuTextEscape ctermfg=Gray
2019-01-10 16:28:56 -08:00
syn match nomsuInterp /\\\%([[{($:]\)\@=/
\ nextgroup=nomsuActionVar,nomsuVar,nomsuList,nomsuDict,nomsuParenGroup,nomsuIndentedInterpBlock contained
hi nomsuInterp ctermfg=Gray
2018-07-24 13:41:50 -07:00
syn region nomsuInterpDotDot matchgroup=nomsuInterpDelim start=/\\\s*$/ end=/\.\./ contained
hi nomsuInterpDotDot ctermfg=Gray
syn region nomsuIndentedText matchgroup=nomsuTextQuotes start=/\%(^\z(\(\s*\)\)[^\n]*\)\@<=("$/ end=/^\z1")/
2018-12-18 15:33:25 -08:00
\ contains=nomsuInterp,nomsuInterpDotDot,nomsuTextBackslash
hi def link nomsuIndentedText String
hi nomsuTextQuotes ctermfg=DarkMagenta
2018-05-15 17:29:26 -07:00
2019-01-10 16:28:56 -08:00
syn region nomsuText matchgroup=nomsuTextQuotes start=/\%((\)\@<!"\|"\%($\)\@!/ end=/"\|$/ contains=nomsuInterp,nomsuTextEscape
2018-05-15 17:29:26 -07:00
hi def link nomsuText String
syn region nomsuIndentedBlock start=/\%(^\z(\s*\)[^\n]*\)\@<=:\s*$/ end=/\n\%(\z1\s\)\@!\%(\s*\.\.\)\?/
\ contains=@nomsuAll
syn region nomsuIndentedInterpBlock matchgroup=nomsuColon start=/:\s*$/ end=/\n\s*\.\./ contained
2018-12-18 15:33:25 -08:00
\ contains=@nomsuAll
syn match nomsuVar /\$\%(\%([a-zA-Z0-9_-]\|[^\x00-\xff]\)\+\|(\@!\)/
2018-12-18 15:33:25 -08:00
\ contains=nomsuDollarSign,nomsuVarParens
hi nomsuVar ctermfg=Cyan
hi def link nomsuVar Identifier
2019-01-10 16:28:56 -08:00
syn region nomsuActionVar matchgroup=nomsuVar start=/\$(/ end=/)\|$/ contains=nomsuVarWord,nomsuVarOpWord,@nomsuAll
2018-12-18 15:33:25 -08:00
syn match nomsuDollarSign /\$/ contained
hi nomsuDollarSign ctermfg=Cyan
2018-12-13 17:17:08 -08:00
2018-12-18 15:33:25 -08:00
syn match nomsuVarParens /[()]/ contained
hi nomsuVarParens ctermfg=LightCyan
2017-09-12 23:00:42 -07:00
syn match nomsuWord /\%([a-zA-Z_]\|[^\x00-\xff]\)\%([a-zA-Z0-9_]\|[^\x00-\xff]\)*/
hi def link nomsuWord Function
hi nomsuWord ctermfg=White
2021-02-07 18:53:48 -08:00
syn match nomsuOpWord ;\(\(//\)\@![`~!|%#@^&*_+=<>?'/-]\)\+\|\%(^\s*\)\@<!#;
2017-10-20 14:33:24 -07:00
hi def link nomsuOpWord Function
hi nomsuOpWord ctermfg=LightYellow
2017-09-12 23:00:42 -07:00
syn match nomsuVarWord /\%([a-zA-Z_]\|[^\x00-\xff]\)\%([a-zA-Z0-9_]\|[^\x00-\xff]\)*/ contained
hi def link nomsuVarWord Function
2019-01-10 16:28:56 -08:00
hi nomsuVarWord ctermfg=LightCyan
2021-02-07 18:53:48 -08:00
syn match nomsuVarOpWord ;\(\(//\)\@![`~!|%#@^&*_+=<>?'/-]\)\+\|\%(^\s*\)\@<!#; contained
hi def link nomsuVarOpWord Function
2019-01-10 16:28:56 -08:00
hi nomsuVarOpWord ctermfg=LightCyan
syn match nomsuNumber /-\?\%(0x\x\+\|\d\+\%(\.\%(\d\+\)\?\)\?\|\.\d\+\)/
2017-09-12 23:00:42 -07:00
hi def link nomsuNumber Number
2018-12-13 17:17:08 -08:00
hi nomsuNumber ctermfg=Red
2017-09-12 23:00:42 -07:00
syn match nomsuInt /-\?\%(0x\x\+\|\d\+\)/
2018-12-18 15:33:25 -08:00
hi def link nomsuInt Number
hi nomsuInt ctermfg=Red
syn match nomsuTextWord /\%([a-zA-Z_]\|[^\x00-\xff]\)\%([a-zA-Z0-9_]\|[^\x00-\xff]\)*/ contained
2018-12-18 15:33:25 -08:00
hi def link nomsuTextWord String
syn match nomsuIndex /\./ nextgroup=nomsuTextWord,nomsuParenGroup,nomsuText,nomsuIndentedText,
\nomsuVar,nomsuActionVar,nomsuInt,nomsuDict,nomsuList,nomsuIndentedBlock
2018-12-18 15:33:25 -08:00
hi nomsuIndex ctermfg=Yellow
2017-10-04 18:01:23 -07:00
syn match nomsuDotDot /\.\./
hi def link nomsuDotDot Special
hi nomsuDotDot ctermfg=DarkGray
2017-09-12 23:00:42 -07:00
2018-05-15 17:29:26 -07:00
syn match nomsuComma /,/
hi nomsuComma ctermfg=Blue
hi def link nomsuComma Delimiter
syn match nomsuColon /:/
hi nomsuColon ctermfg=Yellow
hi def link nomsuColon Delimiter
2017-09-12 23:00:42 -07:00
2018-05-15 17:29:26 -07:00
syn match nomsuSemicolon /;/
hi nomsuSemicolon ctermfg=Blue
hi def link nomsuSemicolon Delimiter
2017-09-12 23:00:42 -07:00
2019-04-06 13:20:57 -07:00
syn region nomsuComment start=/\%(^\z(\s*\)\)\@<=#/ skip=/\n\s*$/ end=/\n\%(\z1\s\)\@!/
hi nomsuComment ctermfg=DarkBlue
hi def link nomsuComment Comment
syn cluster nomsuExpr contains=nomsuParenGroup,nomsuText,nomsuIndentedText,nomsuVar,
\nomsuActionVar,nomsuNumber,nomsuDict,nomsuList,nomsuIndentedBlock
2021-02-07 18:48:51 -08:00
syn cluster nomsuAll contains=nomsuParenGroup,nomsuText,nomsuIndentedText,nomsuComment,nomsuLineComment,
\ nomsuVar,nomsuActionVar,nomsuNumber,nomsuDict,nomsuList,nomsuIndentedBlock,
\ nomsuColon,nomsuSemicolon,nomsuDotDot,nomsuWord,nomsuOpWord,nomsuComma,nomsuIndex
2018-12-13 17:17:08 -08:00
2017-09-12 23:00:42 -07:00
if !exists('b:current_syntax')
let b:current_syntax = 'nomsu'
endif