Updated for new syntax.
This commit is contained in:
parent
630559768c
commit
68f3ea6aa7
@ -8,7 +8,7 @@ endif
|
|||||||
let b:did_ftplugin = 1
|
let b:did_ftplugin = 1
|
||||||
|
|
||||||
setlocal formatoptions-=t
|
setlocal formatoptions-=t
|
||||||
setlocal iskeyword+=%
|
setlocal iskeyword+=$
|
||||||
setlocal cpoptions+=M
|
setlocal cpoptions+=M
|
||||||
setlocal foldmethod=indent
|
setlocal foldmethod=indent
|
||||||
setlocal formatprg=nomsu\ tools/autoformat.nom\ -
|
setlocal formatprg=nomsu\ tools/autoformat.nom\ -
|
||||||
|
@ -10,7 +10,7 @@ let b:did_indent = 1
|
|||||||
|
|
||||||
setlocal autoindent
|
setlocal autoindent
|
||||||
setlocal indentexpr=GetNomsuIndent()
|
setlocal indentexpr=GetNomsuIndent()
|
||||||
setlocal indentkeys+=.
|
setlocal indentkeys+=0],0"
|
||||||
|
|
||||||
" Only define the function once.
|
" Only define the function once.
|
||||||
if exists("*GetNomsuIndent")
|
if exists("*GetNomsuIndent")
|
||||||
@ -24,13 +24,11 @@ function! GetNomsuIndent()
|
|||||||
let previous = getline(previousNum)
|
let previous = getline(previousNum)
|
||||||
let ind = indent(previousNum)
|
let ind = indent(previousNum)
|
||||||
|
|
||||||
if previous =~ '{\.\.}\s*\($\|#\)' || previous =~ '(\.\.)\s*\($\|#\)' || previous =~ ':\s*\($\|#\)'
|
if previous =~ '[{[(:"]\s*$' && previous !~ '^\s*#' "|| previous =~ '^\s*#'
|
||||||
\ || previous =~ '\[\.\.\]\s*\($\|#\)' || previous =~ '"\.\."\s*\($\|#\)'
|
|
||||||
\ || previous =~ '#$'
|
|
||||||
let ind += &tabstop
|
let ind += &tabstop
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if line =~ '^\s*\.\.$'
|
if line =~ '^\s*[\])}]'
|
||||||
let ind -= &tabstop
|
let ind -= &tabstop
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
@ -12,24 +12,23 @@ syn sync minlines=100
|
|||||||
|
|
||||||
"hi def link nomsuInterpDelim PreProc
|
"hi def link nomsuInterpDelim PreProc
|
||||||
hi nomsuInterpDelim ctermfg=Gray
|
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*\)\)\@<=#/ 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
|
||||||
hi nomsuList ctermfg=Blue
|
hi nomsuList ctermfg=Blue
|
||||||
|
|
||||||
syn region nomsuDict start=/{/ end=/}\|$/ contains=nomsuDictWordKey,nomsuComma,@nomsuAll nextgroup=nomsuIndex
|
syn region nomsuDict start=/{/ end=/}/ contains=@nomsuAll
|
||||||
hi nomsuDict ctermfg=Green
|
hi nomsuDict ctermfg=Green
|
||||||
|
|
||||||
syn region nomsuParenGroup start=/(/ end=/)\|$/ contains=@nomsuAll nextgroup=nomsuIndex
|
syn region nomsuParenGroup start=/(/ end=/)/ contains=@nomsuAll
|
||||||
hi nomsuParenGroup ctermfg=Yellow
|
hi nomsuParenGroup ctermfg=Yellow
|
||||||
|
|
||||||
syn match nomsuLongTextStart /"\\$/ contained
|
syn match nomsuLongTextStart /"$/ contained
|
||||||
"hi nomsuLongTextStart ctermfg=Green
|
|
||||||
hi def link nomsuLongTextStart String
|
hi def link nomsuLongTextStart String
|
||||||
syn match nomsuTextBackslash /\\\(\\\)\@=/ nextgroup=nomsuTextEscapedBackslash contained
|
syn match nomsuTextBackslash /\\\(\\\)\@=/ nextgroup=nomsuTextEscapedBackslash contained
|
||||||
hi nomsuTextBackslash ctermfg=Gray
|
hi nomsuTextBackslash ctermfg=Gray
|
||||||
@ -39,48 +38,54 @@ syn match nomsuTextEscapedBackslash /./ contained
|
|||||||
hi nomsuTextEscapedBackslash cterm=bold ctermfg=Blue
|
hi nomsuTextEscapedBackslash cterm=bold ctermfg=Blue
|
||||||
syn match nomsuTextEscape /\\/ nextgroup=nomsuTextEscapedChar contained
|
syn match nomsuTextEscape /\\/ nextgroup=nomsuTextEscapedChar contained
|
||||||
hi nomsuTextEscape ctermfg=Gray
|
hi nomsuTextEscape ctermfg=Gray
|
||||||
syn match nomsuInterp /\\\([%[{(]\)\@=/ nextgroup=nomsuVar,nomsuList,nomsuDict,nomsuParenGroup contained
|
syn match nomsuInterp /\\\([[{($:]\)\@=/ nextgroup=nomsuVar,nomsuList,nomsuDict,nomsuParenGroup,nomsuIndentedBlock contained
|
||||||
hi nomsuInterp ctermfg=Gray
|
hi nomsuInterp ctermfg=Gray
|
||||||
syn region nomsuInterpDotDot matchgroup=nomsuInterpDelim start=/\\\s*$/ end=/\.\./ contained
|
syn region nomsuInterpDotDot matchgroup=nomsuInterpDelim start=/\\\s*$/ end=/\.\./ contained
|
||||||
hi nomsuInterpDotDot ctermfg=Gray
|
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=nomsuIndentedInterp,nomsuInterp,nomsuInterpDotDot,nomsuTextBackslash
|
\ contains=nomsuInterp,nomsuInterpDotDot,nomsuTextBackslash
|
||||||
hi def link nomsuLongTextValue String
|
hi def link nomsuLongTextValue String
|
||||||
syn region nomsuLongText start=/\(^\z(\s*\)[^\n]*\)\@<="\\$/ skip=/\n\s*$/ end=/\n\(\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=/"\($\)\@!/ skip=/\\./ end=/"/ contains=nomsuInterp,nomsuTextEscape
|
||||||
\ 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
|
|
||||||
hi def link nomsuTextWord String
|
|
||||||
|
|
||||||
syn match nomsuVar /%\(\([a-zA-Z0-9_-]\|[^\x00-\xff]\)\+\([a-zA-Z0-9_-]\|[^\x00-\xff]\)*\)\?/ nextgroup=nomsuIndex
|
syn region nomsuIndentedBlock start=/\(^\z(\s*\)[^\n]*\)\@<=:\s*$/ skip=/\n\s*$/ end=/\n\(\z1\s\)\@!\(\s*\.\.\)\?/
|
||||||
"syn match nomsuVar /([ ]*\([a-zA-Z_]\|[^\x00-\xff]\)\([a-zA-Z0-9_ ]\|[^\x00-\xff]\)*)/ contains=nomsuVarParens nextgroup=nomsuIndex
|
\ contains=@nomsuAll
|
||||||
"syn match nomsuVar /\$\(\([a-zA-Z0-9_-]\|[^\x00-\xff]\)\+\([a-zA-Z0-9_-]\|[^\x00-\xff]\)*\)\?/ nextgroup=nomsuIndex
|
|
||||||
|
syn match nomsuVar /\$\((\([ a-zA-Z0-9_`~!@^&*_+=|<>?'/-]\|[^\x00-\xff]\)\+)\|\([a-zA-Z0-9_-]\|[^\x00-\xff]\)\+\)\?/
|
||||||
|
\ contains=nomsuDollarSign,nomsuVarParens
|
||||||
hi nomsuVar ctermfg=Cyan
|
hi nomsuVar ctermfg=Cyan
|
||||||
hi def link nomsuVar Identifier
|
hi def link nomsuVar Identifier
|
||||||
|
|
||||||
syn match nomsuVarParens /[()]/ contained
|
syn match nomsuDollarSign /\$/ contained
|
||||||
hi nomsuVarParens ctermfg=DarkGray
|
hi nomsuDollarSign ctermfg=Cyan
|
||||||
|
|
||||||
syn match nomsuIndex /\./ nextgroup=nomsuVar,nomsuNumber,nomsuParenGroup,nomsuText,nomsuList,nomsuDict,nomsuTextWord
|
syn match nomsuVarParens /[()]/ contained
|
||||||
hi nomsuIndex ctermfg=Yellow
|
hi nomsuVarParens ctermfg=LightCyan
|
||||||
|
|
||||||
syn match nomsuWord /\([a-zA-Z_]\|[^\x00-\xff]\)\([a-zA-Z0-9_]\|[^\x00-\xff]\)*/
|
syn match nomsuWord /\([a-zA-Z_]\|[^\x00-\xff]\)\([a-zA-Z0-9_]\|[^\x00-\xff]\)*/
|
||||||
hi def link nomsuWord Function
|
hi def link nomsuWord Function
|
||||||
hi nomsuWord ctermfg=White
|
hi nomsuWord ctermfg=White
|
||||||
syn match nomsuOpWord ;\v[`~!@^&*_+=|<>?'/-]+;
|
syn match nomsuOpWord ;[`~!@^&*_+=<>?'/-]\+\|\(^\s*\)\@<!#;
|
||||||
hi def link nomsuOpWord Function
|
hi def link nomsuOpWord Function
|
||||||
hi nomsuOpWord ctermfg=LightYellow
|
hi nomsuOpWord ctermfg=LightYellow
|
||||||
|
|
||||||
syn match nomsuNumber /-\?\(0x\x\+\|\d\+\(\.\(\d\+\)\?\)\?\|\.\d\+\)/ nextgroup=nomsuIndex
|
syn match nomsuNumber /-\?\(0x\x\+\|\d\+\(\.\(\d\+\)\?\)\?\|\.\d\+\)/
|
||||||
hi def link nomsuNumber Number
|
hi def link nomsuNumber Number
|
||||||
hi nomsuNumber ctermfg=Red
|
hi nomsuNumber ctermfg=Red
|
||||||
|
|
||||||
|
syn match nomsuInt /-\?\(0x\x\+\|\d\+\)/
|
||||||
|
hi def link nomsuInt Number
|
||||||
|
hi nomsuInt ctermfg=Red
|
||||||
|
|
||||||
|
syn match nomsuTextWord /\([a-zA-Z_]\|[^\x00-\xff]\)\([a-zA-Z0-9_]\|[^\x00-\xff]\)*/ contained
|
||||||
|
hi def link nomsuTextWord String
|
||||||
|
|
||||||
|
syn match nomsuIndex /\./ nextgroup=nomsuTextWord,@nomsuExpr
|
||||||
|
hi nomsuIndex ctermfg=Yellow
|
||||||
|
|
||||||
syn match nomsuDotDot /\.\./
|
syn match nomsuDotDot /\.\./
|
||||||
hi def link nomsuDotDot Special
|
hi def link nomsuDotDot Special
|
||||||
hi nomsuDotDot ctermfg=DarkGray
|
hi nomsuDotDot ctermfg=DarkGray
|
||||||
@ -97,12 +102,12 @@ syn match nomsuSemicolon /;/
|
|||||||
hi nomsuSemicolon ctermfg=Blue
|
hi nomsuSemicolon ctermfg=Blue
|
||||||
hi def link nomsuSemicolon Delimiter
|
hi def link nomsuSemicolon Delimiter
|
||||||
|
|
||||||
syn cluster nomsuAll contains=nomsuParenGroup,nomsuText,nomsuLongText,nomsuComment,nomsuOneLineComment,
|
syn cluster nomsuExpr contains=nomsuParenGroup,nomsuText,nomsuLongText,nomsuVar,nomsuNumber,
|
||||||
\ nomsuVar,nomsuNumber,nomsuDict,nomsuList,nomsuColon,nomsuSemicolon,
|
\ nomsuDict,nomsuList,nomsuIndentedBlock
|
||||||
\ nomsuDotDot,nomsuWord,nomsuOpWord
|
|
||||||
|
|
||||||
syn match nomsuDictWordKey /\([a-zA-Z_]\|[^\x00-\xff]\)\([a-zA-Z0-9_]\|[^\x00-\xff]\)*\(:\)\@=/ contained
|
syn cluster nomsuAll contains=nomsuParenGroup,nomsuText,nomsuLongText,nomsuComment,
|
||||||
hi def link nomsuDictWordKey String
|
\ nomsuVar,nomsuNumber,nomsuDict,nomsuList,nomsuIndentedBlock,nomsuColon,nomsuSemicolon,
|
||||||
|
\ nomsuDotDot,nomsuWord,nomsuOpWord,nomsuComma,nomsuIndex
|
||||||
|
|
||||||
if !exists('b:current_syntax')
|
if !exists('b:current_syntax')
|
||||||
let b:current_syntax = 'nomsu'
|
let b:current_syntax = 'nomsu'
|
||||||
|
Loading…
Reference in New Issue
Block a user