diff --git a/indent/nomsu.vim b/indent/nomsu.vim index e5288ea..4408ee5 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 =~ '"\.\."$' + if previous =~ ':$' || previous =~ '\.\.$' || previous =~ '(\.\.)$' || previous =~ '\[\.\.\]$' || previous =~ '"\.\."$' || previous =~ '#\.\..*$' let ind += &tabstop endif diff --git a/syntax/nomsu.vim b/syntax/nomsu.vim index ce22528..402cb9f 100644 --- a/syntax/nomsu.vim +++ b/syntax/nomsu.vim @@ -9,15 +9,30 @@ 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=/$/ +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 +hi def link nomsuComment Comment syn region nomsuString1 start=/"/ skip=/\\\\\|\\"/ end=/"/ hi def link nomsuString1 String -syn region nomsuString2 start=/"\.\."/ end=/\(\n[ \t]*[^ \t|]\)\@=/ + +syn match nomsuStringLineStart /^[ \t]*|/ contained +hi def link nomsuStringLineStart Delimiter +syn match nomsuStringTrailingSpace /[ \t]*$/ contained +hi nomsuStringTrailingSpace ctermbg=Magenta + + +syn region nomsuString2 start=/"\.\."\s*$\n\(\s*\n\)*\z(\s\+\)\S/ skip=/^\%(\z1\S\|^\s*$\)/ end=/^\z1\@!.*/me=s-1 +\ contains=nomsuInterp,nomsuStringLineStart,nomsuStringTrailingSpace hi def link nomsuString2 String -syn region nomsuComment start=/(#/ end=/#)/ contains=nomsuComment -hi def link nomsuComment Comment syn match nomsuVar /\v\%[a-zA-Z0-9_'+*/^&$@#-]*/ hi def link nomsuVar Identifier @@ -44,6 +59,9 @@ hi def link nomsuThunk Structure syn match nomsuToken /\v(\%)@