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
|
|
|
|
|
2017-09-14 00:12:28 -07:00
|
|
|
hi def link nomsuInterpDelim PreProc
|
2018-05-15 17:29:26 -07:00
|
|
|
syn region nomsuOneLineComment start=/#/ end=/$/
|
2017-09-20 04:39:41 -07:00
|
|
|
hi nomsuOneLineComment ctermfg=DarkBlue
|
2017-09-14 00:12:28 -07:00
|
|
|
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\)\@!/
|
2017-09-20 04:39:41 -07:00
|
|
|
hi nomsuComment ctermfg=DarkBlue
|
2017-09-14 00:12:28 -07:00
|
|
|
hi def link nomsuComment Comment
|
2017-09-12 23:00:42 -07:00
|
|
|
|
2017-09-14 00:12:28 -07:00
|
|
|
|
2018-05-17 20:17:49 -07:00
|
|
|
syn region nomsuList start=/\[/ end=/$\|\]/ contains=@nomsuAll,nomsuComma
|
2018-05-15 17:29:26 -07:00
|
|
|
hi nomsuList ctermfg=Blue
|
|
|
|
|
2018-05-17 20:17:49 -07:00
|
|
|
syn region nomsuDict start=/{/ end=/$\|}/ contains=nomsuColon,nomsuComma,@nomsuAll
|
2018-05-15 17:29:26 -07:00
|
|
|
hi nomsuDict ctermfg=Green
|
|
|
|
|
2018-05-17 20:17:49 -07:00
|
|
|
syn region nomsuParenGroup start=/(/ end=/$\|)/ contains=@nomsuAll
|
2017-11-13 15:10:51 -08:00
|
|
|
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
|
2018-05-17 20:17:49 -07:00
|
|
|
hi nomsuTextBackslash ctermfg=Blue
|
2018-05-15 17:29:26 -07:00
|
|
|
syn match nomsuTextEscapedQuote /\\"/ contained
|
2018-05-17 20:17:49 -07:00
|
|
|
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
|
2017-09-20 04:39:41 -07:00
|
|
|
|
2018-05-15 18:52:17 -07:00
|
|
|
syn match nomsuVar /%\([a-zA-Z0-9_]\|[^\x00-\xff]\)*/
|
2017-09-20 04:39:41 -07:00
|
|
|
hi nomsuVar ctermfg=Cyan
|
|
|
|
hi def link nomsuVar Identifier
|
2017-09-14 00:12:28 -07:00
|
|
|
|
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]\)*/
|
2017-09-20 04:39:41 -07:00
|
|
|
hi def link nomsuWord Function
|
|
|
|
hi nomsuWord ctermfg=White
|
2018-05-17 20:17:49 -07:00
|
|
|
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
|
|
|
|
2017-09-20 04:39:41 -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,
|
2018-05-17 20:17:49 -07:00
|
|
|
\ nomsuVar,nomsuNumber,nomsuDict,nomsuList,nomsuColon,nomsuSemicolon,
|
|
|
|
\ nomsuDotDot,nomsuWord,nomsuOpWord
|
2017-09-14 00:12:28 -07:00
|
|
|
|
2017-09-12 23:00:42 -07:00
|
|
|
if !exists('b:current_syntax')
|
|
|
|
let b:current_syntax = 'nomsu'
|
|
|
|
endif
|