1 Commits

Author SHA1 Message Date
Dan Church
c30ee7d885 Fix &isk not applying when editing SASS/SCSS 2024-09-08 18:35:07 -04:00
2 changed files with 1 additions and 2 deletions

View File

@@ -16,7 +16,7 @@ setlocal commentstring=//\ %s
setlocal includeexpr=SassIncludeExpr(v:fname)
setlocal omnifunc=csscomplete#CompleteCSS
setlocal suffixesadd=.sass,.scss,.css
if &filetype =~# '\<s[ac]ss]\>'
if &filetype =~# '\<s[ac]ss\>'
setlocal iskeyword+=-
setlocal iskeyword+=$
setlocal iskeyword+=%

View File

@@ -100,7 +100,6 @@ hi def link sassInterpolationDelimiter Delimiter
hi def link sassAmpersand Character
hi def link sassId Identifier
hi def link sassClass Type
hi def link sassMixinName Function
let b:current_syntax = "sass"