Updated for Nomsu v2

This commit is contained in:
Bruce Hill 2018-07-24 13:41:50 -07:00
parent 1544e284d6
commit bd4d92dd8d
2 changed files with 26 additions and 18 deletions

View File

@ -24,7 +24,7 @@ function! GetNomsuIndent()
let previous = getline(previousNum) let previous = getline(previousNum)
let ind = indent(previousNum) let ind = indent(previousNum)
if previous =~ '{\.\.}\s*\($\|#\)' || previous =~ '(\.\.)\s*\($\|#\)' if previous =~ '{\.\.}\s*\($\|#\)' || previous =~ '(\.\.)\s*\($\|#\)' || previous =~ ':\s*\($\|#\)'
\ || previous =~ '\[\.\.\]\s*\($\|#\)' || previous =~ '"\.\."\s*\($\|#\)' \ || previous =~ '\[\.\.\]\s*\($\|#\)' || previous =~ '"\.\."\s*\($\|#\)'
\ || previous =~ '#$' \ || previous =~ '#$'
let ind += &tabstop let ind += &tabstop

View File

@ -10,46 +10,54 @@ endif
" Highlight long strings. " Highlight long strings.
syn sync minlines=100 syn sync minlines=100
hi def link nomsuInterpDelim PreProc "hi def link nomsuInterpDelim PreProc
hi nomsuInterpDelim ctermfg=Gray
syn region nomsuOneLineComment start=/#/ end=/$/ syn region nomsuOneLineComment start=/#/ end=/$/
hi nomsuOneLineComment ctermfg=DarkBlue hi nomsuOneLineComment ctermfg=DarkBlue
hi def link nomsuOneLineComment Comment hi def link nomsuOneLineComment Comment
syn region nomsuComment start=/\(^\z(\s*\)[^\n]*\)\@<=#/ skip=/\n\s*$/ end=/\n\(\z1\s\)\@!/ syn region nomsuComment start=/\(^\z(\s*\)\)\@<=#/ skip=/\n\s*$/ end=/\n\(\z1\s\)\@!/
hi nomsuComment ctermfg=DarkBlue hi nomsuComment ctermfg=DarkBlue
hi def link nomsuComment Comment hi def link nomsuComment Comment
syn region nomsuList start=/\[/ end=/\]/ contains=@nomsuAll,nomsuComma nextgroup=nomsuIndex
syn region nomsuList start=/\[/ end=/$\|\]/ contains=@nomsuAll,nomsuComma nextgroup=nomsuIndex
hi nomsuList ctermfg=Blue hi nomsuList ctermfg=Blue
syn region nomsuDict start=/{/ end=/$\|}/ contains=nomsuColon,nomsuComma,@nomsuAll nextgroup=nomsuIndex syn region nomsuDict start=/{/ end=/}/ contains=nomsuColon,nomsuComma,@nomsuAll nextgroup=nomsuIndex
hi nomsuDict ctermfg=Green hi nomsuDict ctermfg=Green
syn region nomsuParenGroup start=/(/ end=/$\|)/ contains=@nomsuAll nextgroup=nomsuIndex syn region nomsuParenGroup start=/(/ end=/)/ contains=@nomsuAll nextgroup=nomsuIndex
hi nomsuParenGroup ctermfg=Yellow hi nomsuParenGroup ctermfg=Yellow
syn match nomsuLongTextStart /"\.\."/ contains=nomsuDotDot contained syn match nomsuLongTextStart /"\.\."/ contains=nomsuDotDot contained
hi def link nomsuLongTextStart String hi def link nomsuLongTextStart String
syn match nomsuTextBackslash /\\\\/ contained syn match nomsuTextBackslash /\\\(\\\)\@=/ nextgroup=nomsuTextEscapedBackslash contained
hi nomsuTextBackslash ctermfg=Blue hi nomsuTextBackslash ctermfg=Gray
syn match nomsuTextEscapedQuote /\\"/ contained syn match nomsuTextEscapedChar /\(\x\{1,3}\|x\x\{1,2}\|.\)/ contained
hi nomsuTextEscapedQuote ctermfg=Blue hi nomsuTextEscapedChar ctermfg=Magenta cterm=reverse
syn match nomsuInterp /\\\([%[{"(]\)\@=/ nextgroup=nomsuVar,nomsuText,nomsuList,nomsuDict,nomsuParenGroup contained syn match nomsuTextEscapedBackslash /./ contained
hi nomsuTextEscapedBackslash ctermfg=Magenta cterm=reverse
syn match nomsuTextEscape /\\/ nextgroup=nomsuTextEscapedChar contained
hi nomsuTextEscape ctermfg=Gray
syn match nomsuInterp /\\\([%[{(]\)\@=/ nextgroup=nomsuVar,nomsuList,nomsuDict,nomsuParenGroup contained
hi nomsuInterp ctermfg=Gray hi nomsuInterp ctermfg=Gray
syn region nomsuInterpDotDot matchgroup=nomsuInterpDelim start=/\\$/ end=/\.\./ contained syn region nomsuInterpDotDot matchgroup=nomsuInterpDelim start=/\\\s*$/ end=/\.\./ contained
hi nomsuInterpDotDot ctermfg=Gray
syn region nomsuIndentedInterp matchgroup=nomsuInterpDelim start=/\\\((\.\.)\|:\|\[\.\.\]\|{\.\.}\)\s*\(\n\(\s*\n\)*\z(\s*\)\)\@=/
\ end=/\n\(\z1\)\@!\s*\.\./ contained contains=@nomsuAll
hi nomsuIndentedInterp ctermfg=Gray
syn region nomsuLongTextValue start=/^/ end=/$/ contained syn region nomsuLongTextValue start=/^/ end=/$/ contained
\ contains=nomsuInterp,nomsuInterpDotDot,nomsuTextBackslash \ contains=nomsuIndentedInterp,nomsuInterp,nomsuInterpDotDot,nomsuTextBackslash
hi def link nomsuLongTextValue String hi def link nomsuLongTextValue String
syn region nomsuLongText start=/\(^\z(\s*\)[^\n]*\)\@<="\.\."/ skip=/^\s*$/ end=/^\(\z1\s\)\@!/ syn region nomsuLongText start=/\(^\z(\s*\)[^\n]*\)\@<="\.\."/ skip=/\n\s*$/ end=/\n\(\z1\s\)\@!/
\ contains=nomsuLongTextStart,nomsuLongTextValue \ contains=nomsuLongTextStart,nomsuLongTextValue
syn region nomsuText start=/\("\.\.\)\@<!"\(\.\."\)\@!/ skip=/\\\\\|\\"/ end=/$\|"/ nextgroup=nomsuIndex syn region nomsuText start=/"\(\.\."\s*$\)\@!/ skip=/\\./ end=/"/ nextgroup=nomsuIndex
\ contains=nomsuInterp,nomsuTextBackslash,nomsuTextEscapedQuote \ contains=nomsuInterp,nomsuTextEscape
hi def link nomsuText String hi def link nomsuText String
syn match nomsuTextWord /\([a-zA-Z_]\|[^\x00-\xff]\)\([a-zA-Z0-9_]\|[^\x00-\xff]\)*/ contained nextgroup=nomsuIndex syn match nomsuTextWord /\([a-zA-Z_]\|[^\x00-\xff]\)\([a-zA-Z0-9_]\|[^\x00-\xff]\)*/ contained nextgroup=nomsuIndex
hi def link nomsuTextWord String hi def link nomsuTextWord String
syn match nomsuVar /%\([a-zA-Z0-9_]\|[^\x00-\xff]\)*/ nextgroup=nomsuIndex syn match nomsuVar /%\(\([a-zA-Z0-9_-]\|[^\x00-\xff]\)\+\([a-zA-Z0-9_-]\|[^\x00-\xff]\)*\)\?/ nextgroup=nomsuIndex
hi nomsuVar ctermfg=Cyan hi nomsuVar ctermfg=Cyan
hi def link nomsuVar Identifier hi def link nomsuVar Identifier