diff --git a/indent/nomsu.vim b/indent/nomsu.vim index 4408ee5..71a338b 100644 --- a/indent/nomsu.vim +++ b/indent/nomsu.vim @@ -24,7 +24,7 @@ function! GetNomsuIndent() let previous = getline(previousNum) let ind = indent(previousNum) - if previous =~ ':$' || previous =~ '\.\.$' || previous =~ '(\.\.)$' || previous =~ '\[\.\.\]$' || previous =~ '"\.\."$' || previous =~ '#\.\..*$' + if previous =~ ':$' || previous =~ '(\.\.)$' || previous =~ '\[\.\.\]$' || previous =~ '"\.\."$' || previous =~ '#\.\..*$' let ind += &tabstop endif diff --git a/syntax/nomsu.vim b/syntax/nomsu.vim index 63db045..02ae1d6 100644 --- a/syntax/nomsu.vim +++ b/syntax/nomsu.vim @@ -9,62 +9,67 @@ endif " Highlight long strings. syn sync minlines=100 -"highlight String ctermbg=DarkBlue ctermfg=Black -" Regular strings -" -syn region nomsuInterp matchgroup=nomsuInterpDelim start=/\\/ end=/\\/ contained -\ contains=@nomsuAll hi def link nomsuInterpDelim PreProc -syn region nomsuOneLineComment start=/#/ end=/$/ +syn region nomsuOneLineComment start=/#\(\.\.\)\@!/ end=/$/ +hi nomsuOneLineComment ctermfg=DarkBlue hi def link nomsuOneLineComment Comment -syn region nomsuComment start=/#\.\.[^\n]*$\n\(\s*\n\)*\z(\s\+\)\S/ skip=/^\%(\z1\S\|^\s*$\)/ end=/^\z1\@!.*/me=s-1 +syn region nomsuComment start=/\(\n\z(\s*\)[^\n]*\)\@<=#\.\./ skip=/\n\s*$/ end=/\n\(\z1\s\)\@!/ +hi nomsuComment ctermfg=DarkBlue hi def link nomsuComment Comment -syn region nomsuString1 start=/"\(\(\.\."\)\@!\|\.\."\s*|.*$\)/ skip=/\\\\\|\\"/ end=/"/ -hi def link nomsuString1 String -syn region nomsuStringLine start=/"\.\."/ end=/$/ -\ contains=nomsuInterp,nomsuStringLineStart,nomsuStringTrailingSpace,nomsuOneLineComment,nomsuComment -hi def link nomsuStringLine String - -syn match nomsuStringLineStart /\(^[ \t]*\|"\.\."\s*\)\@<=|/ contained -hi def link nomsuStringLineStart Delimiter -syn match nomsuStringTrailingSpace /[ \t]*$/ contained -hi nomsuStringTrailingSpace ctermbg=Magenta +syn region nomsuShortString start=/\("\.\.\)\@?'-][a-zA-Z0-9`~!@^&*_+=|<>?-]*/ +hi nomsuVar ctermfg=Cyan hi def link nomsuVar Identifier -syn match nomsuNumber /\v([a-zA-Z])@?'-][a-zA-Z0-9`~!@^&*_+=|<>?-]*/ +hi def link nomsuWord Function +hi nomsuWord ctermfg=White + +syn match nomsuNumber /-\?\d\+\(\.\(\d\+\)\?\)\?/ +syn match nomsuNumber /-\?\.\d\+/ hi def link nomsuNumber Number -syn match nomsuIndentor /\[\.\.\]/ -syn match nomsuIndentor /(\.\.)/ -syn match nomsuIndentor /\.\.\s*$/ -syn match nomsuIndentor /^\s*\.\./ -hi def link nomsuIndentor Special - syn match nomsuIndentor /\.\./ -hi def link nomsuIndentor Delimiter +hi def link nomsuIndentor Special +hi nomsuIndentor ctermfg=DarkGray -syn match nomsuComma /,/ -hi def link nomsuComma Delimiter +syn match nomsuDelim /[,()\[\]]/ +hi nomsuDelim ctermfg=Yellow +hi def link nomsuDelim Delimiter syn match nomsuThunk /:/ +hi nomsuThunk ctermfg=Yellow hi def link nomsuThunk Structure -syn match nomsuToken /\v(\%)@