Properly highlight SCSS comments

This commit is contained in:
Tim Pope
2010-07-25 14:36:53 -04:00
parent 8a78d1b30e
commit 54139ceb5b
2 changed files with 7 additions and 2 deletions

View File

@@ -9,6 +9,11 @@ endif
runtime! syntax/sass.vim
syn match scssComment "//.*" contains=sassTodo,@Spell
syn region scssComment start="/\*" end="\*/" contains=sassTodo,@Spell
hi def link scssComment sassComment
let b:current_syntax = "scss"
" vim:set sw=2: