diff options
-rw-r--r-- | mu.vim | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/mu.vim b/mu.vim index a51386e9..ea1bcb42 100644 --- a/mu.vim +++ b/mu.vim @@ -20,14 +20,13 @@ set cpo&vim setlocal iskeyword=@,48-57,?,!,_,$,- -syntax match muComment /;.*$/ +syntax match muComment /#.*$/ highlight link muComment Comment -syntax match muSalientComment /;;.*$/ +syntax match muSalientComment /##.*$/ highlight link muSalientComment SalientComment -set comments-=:; -set comments+=n:; -syntax match CommentedCode ";? .*" -let b:cmt_head = ";? " +set comments+=n:# +syntax match CommentedCode "#? .*" +let b:cmt_head = "#? " syntax region muString start=+"+ skip=+\\\\\|\\"+ end=+"+ contains=@Spell highlight link muString String |