This commit is contained in:
Kartik Agaram 2020-10-07 22:00:38 -07:00
parent e9957c78da
commit d906d5fd38
1 changed files with 1 additions and 1 deletions

2
mu.vim
View File

@ -28,7 +28,7 @@ setlocal formatoptions-=t " Mu programs have long lines
setlocal formatoptions+=c " but comments should still wrap
syntax match muSalientComment /##.*$/ | highlight link muSalientComment SalientComment
syntax match muComment /#\( \.\| - \|? \)\@!.*/ | highlight link muComment Comment
syntax match muComment /#\( \.\|? \)\@!.*/ | highlight link muComment Comment
syntax match muS1Comment /# \..*/ | highlight link muS1Comment Comment
syntax match muS2Comment /# \. \..*/ | highlight link muS2Comment Comment