diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2019-03-29 20:30:36 +0100 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2019-03-29 20:30:36 +0100 |
commit | a55b6aa3aa797c989a4979a13a5bd2ae11cfd4a5 (patch) | |
tree | 0ec7670cabfdf1b5fa3545cee9ee9d6ca7c8ad32 /syntax/scss.vim | |
parent | 1d45a6d4f094127b113470d7710695b280224933 (diff) | |
download | vim-polyglot-a55b6aa3aa797c989a4979a13a5bd2ae11cfd4a5.tar.gz vim-polyglot-a55b6aa3aa797c989a4979a13a5bd2ae11cfd4a5.zip |
Remove grapqhl, fixes #387v3.7.1
Diffstat (limited to 'syntax/scss.vim')
-rw-r--r-- | syntax/scss.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/syntax/scss.vim b/syntax/scss.vim index ba427ba6..84f75fea 100644 --- a/syntax/scss.vim +++ b/syntax/scss.vim @@ -51,7 +51,7 @@ syn cluster scssSelectors contains=@comment,cssSelectorOp,cssTagName,cssPseudoCl syn match scssProperty "\([[:alnum:]-]\)\+\s*\(:\)\@=" contained contains=css.*Prop,cssVendor containedin=cssMediaBlock nextgroup=scssAttribute,scssAttributeWithNestedDefinition syn match scssAttribute ":[^;]*\ze\(;\|}\)" contained contains=css.*Attr,cssValue.*,cssColor,cssFunction,cssString.*,cssURL,scssFunction,scssInterpolation,scssVariable -syn match scssAttributeWithNestedDefinition ": [^#]*{\@=" nextgroup=scssNestedDefinition contained contains=css.*Attr,cssValue.*,scssVariable +syn match scssAttributeWithNestedDefinition ": [^#"]*{\@=" nextgroup=scssNestedDefinition contained contains=css.*Attr,cssValue.*,scssVariable syn region scssNestedDefinition matchgroup=cssBraces start="{" end="}" contained contains=@comment,scssProperty,scssNestedProperty " CSS properties from https://developer.mozilla.org/en-US/docs/Web/CSS/Reference |