From af2862d0d09241dfbc139b2f7789f3776b4b2f8b Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Wed, 4 Oct 2017 18:01:23 -0700 Subject: [PATCH] Updated. --- ftplugin/nomsu.vim | 2 +- indent/nomsu.vim | 4 +++- syntax/nomsu.vim | 41 +++++++++++++++++++++-------------------- 3 files changed, 25 insertions(+), 22 deletions(-) diff --git a/ftplugin/nomsu.vim b/ftplugin/nomsu.vim index a5c820d..dd26e2b 100644 --- a/ftplugin/nomsu.vim +++ b/ftplugin/nomsu.vim @@ -8,7 +8,7 @@ endif let b:did_ftplugin = 1 setlocal formatoptions-=t -setlocal iskeyword=46,58,44,40,41,34,91,92 +setlocal iskeyword=46,58,44,40,41,34,91,92,93 let b:undo_ftplugin = "setlocal formatoptions<" diff --git a/indent/nomsu.vim b/indent/nomsu.vim index 71a338b..94a862b 100644 --- a/indent/nomsu.vim +++ b/indent/nomsu.vim @@ -24,7 +24,9 @@ function! GetNomsuIndent() let previous = getline(previousNum) let ind = indent(previousNum) - if previous =~ ':$' || previous =~ '(\.\.)$' || previous =~ '\[\.\.\]$' || previous =~ '"\.\."$' || previous =~ '#\.\..*$' + if previous =~ ':\s*\($\|#\)' || previous =~ '(\.\.)\s*\($\|#\)' +\ || previous =~ '\[\.\.\]\s*\($\|#\)' || previous =~ '"\.\."\s*\($\|#\)' +\ || previous =~ '#\.\..*$' let ind += &tabstop endif diff --git a/syntax/nomsu.vim b/syntax/nomsu.vim index 02ae1d6..931ec05 100644 --- a/syntax/nomsu.vim +++ b/syntax/nomsu.vim @@ -14,36 +14,37 @@ hi def link nomsuInterpDelim PreProc syn region nomsuOneLineComment start=/#\(\.\.\)\@!/ end=/$/ hi nomsuOneLineComment ctermfg=DarkBlue hi def link nomsuOneLineComment Comment -syn region nomsuComment start=/\(\n\z(\s*\)[^\n]*\)\@<=#\.\./ skip=/\n\s*$/ end=/\n\(\z1\s\)\@!/ +syn region nomsuComment start=/\(^\z(\s*\)[^\n]*\)\@<=#\.\./ skip=/\n\s*$/ end=/\n\(\z1\s\)\@!/ hi nomsuComment ctermfg=DarkBlue hi def link nomsuComment Comment -syn region nomsuShortString start=/\("\.\.\)\@?'-][a-zA-Z0-9`~!@^&*_+=|<>?-]*/ +syn match nomsuVar /%\([a-zA-Z0-9`~!@^&*_+=|<>?-]*\)\?/ hi nomsuVar ctermfg=Cyan hi def link nomsuVar Identifier @@ -56,11 +57,11 @@ syn match nomsuNumber /-\?\d\+\(\.\(\d\+\)\?\)\?/ syn match nomsuNumber /-\?\.\d\+/ hi def link nomsuNumber Number -syn match nomsuIndentor /\.\./ -hi def link nomsuIndentor Special -hi nomsuIndentor ctermfg=DarkGray +syn match nomsuDotDot /\.\./ +hi def link nomsuDotDot Special +hi nomsuDotDot ctermfg=DarkGray -syn match nomsuDelim /[,()\[\]]/ +syn match nomsuDelim /[,;()\[\]]/ hi nomsuDelim ctermfg=Yellow hi def link nomsuDelim Delimiter @@ -68,8 +69,8 @@ syn match nomsuThunk /:/ hi nomsuThunk ctermfg=Yellow hi def link nomsuThunk Structure -syn cluster nomsuAll contains=nomsuShortString,nomsuLongString,nomsuComment,nomsuOneLineComment, -\ nomsuVar,nomsuNumber,nomsuDelim,nomsuThunk,nomsuIndentor,nomsuWord +syn cluster nomsuAll contains=nomsuString,nomsuLongString,nomsuComment,nomsuOneLineComment, +\ nomsuVar,nomsuNumber,nomsuDelim,nomsuThunk,nomsuDotDot,nomsuWord if !exists('b:current_syntax') let b:current_syntax = 'nomsu'