vim-nomsu/syntax/nomsu.vim

91 lines
3.1 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
hi def link nomsuInterpDelim PreProc
2018-05-15 17:29:26 -07:00
syn region nomsuOneLineComment start=/#/ end=/$/
hi nomsuOneLineComment ctermfg=DarkBlue
hi def link nomsuOneLineComment Comment
2018-05-15 17:29:26 -07:00
syn region nomsuComment start=/\(^\z(\s*\)[^\n]*\)\@<=#/ skip=/\n\s*$/ end=/\n\(\z1\s\)\@!/
hi nomsuComment ctermfg=DarkBlue
hi def link nomsuComment Comment
2017-09-12 23:00:42 -07:00
syn region nomsuList start=/\[/ end=/$\|\]/ contains=@nomsuAll,nomsuComma
2018-05-15 17:29:26 -07:00
hi nomsuList ctermfg=Blue
syn region nomsuDict start=/{/ end=/$\|}/ contains=nomsuColon,nomsuComma,@nomsuAll
2018-05-15 17:29:26 -07:00
hi nomsuDict ctermfg=Green
syn region nomsuParenGroup start=/(/ end=/$\|)/ contains=@nomsuAll
hi nomsuParenGroup ctermfg=Yellow
2018-05-15 17:29:26 -07:00
syn match nomsuLongTextStart /"\.\."/ contains=nomsuIndentor contained
hi nomsuLongTextStart ctermfg=Gray
syn match nomsuTextBackslash /\\\\/ contained
hi nomsuTextBackslash ctermfg=Blue
2018-05-15 17:29:26 -07:00
syn match nomsuTextEscapedQuote /\\"/ contained
hi nomsuTextEscapedQuote ctermfg=Blue
syn match nomsuInterp /\\\([%[{"(]\)\@=/ nextgroup=nomsuVar,nomsuText,nomsuList,nomsuDict,nomsuParenGroup contained
hi nomsuInterp ctermfg=Brown
2017-10-20 14:33:24 -07:00
syn region nomsuInterpDotDot matchgroup=nomsuInterpDelim start=/\\$/ end=/\.\./ contained
2018-05-15 17:29:26 -07:00
syn region nomsuLongTextValue start=/^/ end=/$/ contained
\ contains=nomsuInterp,nomsuInterpDotDot,nomsuTextBackslash
hi nomsuLongTextValue ctermfg=Gray
hi def link nomsuLongTextValue Text
syn region nomsuLongText start=/\(^\z(\s*\)[^\n]*\)\@<="\.\."/ skip=/^\s*$/ end=/^\(\z1\s\)\@!/
\ contains=nomsuLongTextStart,nomsuLongTextValue
syn region nomsuText start=/\("\.\.\)\@<!"\(\.\."\)\@!/ skip=/\\\\\|\\"/ end=/$\|"/
\ contains=nomsuInterp,nomsuTextBackslash,nomsuTextEscapedQuote
hi nomsuText ctermfg=Gray
hi def link nomsuText String
2018-05-15 18:52:17 -07:00
syn match nomsuVar /%\([a-zA-Z0-9_]\|[^\x00-\xff]\)*/
hi nomsuVar ctermfg=Cyan
hi def link nomsuVar Identifier
2017-09-12 23:00:42 -07:00
2018-05-15 18:52:17 -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
syn match nomsuOpWord ;\v[`$~!@^&*_+=|<>?'/-]+;
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 nomsuNumber /-\?\d\+\(\.\(\d\+\)\?\)\?/
syn match nomsuNumber /-\?\.\d\+/
2017-09-12 23:00:42 -07:00
hi def link nomsuNumber Number
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
2018-05-15 17:29:26 -07:00
syn cluster nomsuAll contains=nomsuParenGroup,nomsuText,nomsuLongText,nomsuComment,nomsuOneLineComment,
\ nomsuVar,nomsuNumber,nomsuDict,nomsuList,nomsuColon,nomsuSemicolon,
\ nomsuDotDot,nomsuWord,nomsuOpWord
2017-09-12 23:00:42 -07:00
if !exists('b:current_syntax')
let b:current_syntax = 'nomsu'
endif