Mercurial > vim
annotate runtime/syntax/sass.vim @ 9481:7520696c14b0 v7.4.2021
commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Jul 10 19:03:57 2016 +0200
patch 7.4.2021
Problem: Still too many buf_valid() calls.
Solution: Make au_new_curbuf a bufref. Use bufref_valid() in more places.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sun, 10 Jul 2016 19:15:06 +0200 |
parents | 2eb30f341e8d |
children | 43efa4f5a8ea |
rev | line source |
---|---|
1668 | 1 " Vim syntax file |
2415 | 2 " Language: Sass |
3 " Maintainer: Tim Pope <vimNOSPAM@tpope.org> | |
4 " Filenames: *.sass | |
4681
2eb30f341e8d
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2526
diff
changeset
|
5 " Last Change: 2013 May 30 |
1668 | 6 |
7 if exists("b:current_syntax") | |
8 finish | |
9 endif | |
10 | |
11 runtime! syntax/css.vim | |
12 | |
13 syn case ignore | |
14 | |
15 syn cluster sassCssProperties contains=cssFontProp,cssFontDescriptorProp,cssColorProp,cssTextProp,cssBoxProp,cssGeneratedContentProp,cssPagingProp,cssUIProp,cssRenderProp,cssAuralProp,cssTableProp | |
2415 | 16 syn cluster sassCssAttributes contains=css.*Attr,scssComment,cssValue.*,cssColor,cssURL,sassDefault,cssImportant,cssError,cssStringQ,cssStringQQ,cssFunction,cssUnicodeEscape,cssRenderProp |
1668 | 17 |
2415 | 18 syn region sassDefinition matchgroup=cssBraces start="{" end="}" contains=TOP |
19 | |
4681
2eb30f341e8d
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2526
diff
changeset
|
20 syn match sassProperty "\%([{};]\s*\|^\)\@<=\%([[:alnum:]-]\|#{[^{}]*}\)\+\s*:" contains=css.*Prop skipwhite nextgroup=sassCssAttribute contained containedin=sassDefinition |
2eb30f341e8d
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2526
diff
changeset
|
21 syn match sassProperty "^\s*\zs\s\%(\%([[:alnum:]-]\|#{[^{}]*}\)\+\s*:\|:[[:alnum:]-]\+\)"hs=s+1 contains=css.*Prop skipwhite nextgroup=sassCssAttribute |
2415 | 22 syn match sassProperty "^\s*\zs\s\%(:\=[[:alnum:]-]\+\s*=\)"hs=s+1 contains=css.*Prop skipwhite nextgroup=sassCssAttribute |
2526
713a4965ee7f
Runtime file updates. (Tim Pope)
Bram Moolenaar <bram@vim.org>
parents:
2421
diff
changeset
|
23 syn match sassCssAttribute +\%("\%([^"]\|\\"\)*"\|'\%([^']\|\\'\)*'\|#{[^{}]*}\|[^{};]\)*+ contained contains=@sassCssAttributes,sassVariable,sassFunction,sassInterpolation |
2415 | 24 syn match sassDefault "!default\>" contained |
25 syn match sassVariable "!\%(important\>\|default\>\)\@![[:alnum:]_-]\+" | |
26 syn match sassVariable "$[[:alnum:]_-]\+" | |
27 syn match sassVariableAssignment "\%([!$][[:alnum:]_-]\+\s*\)\@<=\%(||\)\==" nextgroup=sassCssAttribute skipwhite | |
28 syn match sassVariableAssignment "\%([!$][[:alnum:]_-]\+\s*\)\@<=:" nextgroup=sassCssAttribute skipwhite | |
29 | |
30 syn match sassFunction "\<\%(rgb\|rgba\|red\|green\|blue\|mix\)\>(\@=" contained | |
31 syn match sassFunction "\<\%(hsl\|hsla\|hue\|saturation\|lightness\|adjust-hue\|lighten\|darken\|saturate\|desaturate\|grayscale\|complement\)\>(\@=" contained | |
32 syn match sassFunction "\<\%(alpha\|opacity\|rgba\|opacify\|fade-in\|transparentize\|fade-out\)\>(\@=" contained | |
33 syn match sassFunction "\<\%(unquote\|quote\)\>(\@=" contained | |
34 syn match sassFunction "\<\%(percentage\|round\|ceil\|floor\|abs\)\>(\@=" contained | |
35 syn match sassFunction "\<\%(type-of\|unit\|unitless\|comparable\)\>(\@=" contained | |
36 | |
4681
2eb30f341e8d
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2526
diff
changeset
|
37 syn region sassInterpolation matchgroup=sassInterpolationDelimiter start="#{" end="}" contains=@sassCssAttributes,sassVariable,sassFunction containedin=cssStringQ,cssStringQQ,cssPseudoClass,sassProperty |
2415 | 38 |
39 syn match sassMixinName "[[:alnum:]_-]\+" contained nextgroup=sassCssAttribute | |
4681
2eb30f341e8d
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2526
diff
changeset
|
40 syn match sassMixin "^=" nextgroup=sassMixinName skipwhite |
2526
713a4965ee7f
Runtime file updates. (Tim Pope)
Bram Moolenaar <bram@vim.org>
parents:
2421
diff
changeset
|
41 syn match sassMixin "\%([{};]\s*\|^\s*\)\@<=@mixin" nextgroup=sassMixinName skipwhite |
2415 | 42 syn match sassMixing "^\s\+\zs+" nextgroup=sassMixinName |
2526
713a4965ee7f
Runtime file updates. (Tim Pope)
Bram Moolenaar <bram@vim.org>
parents:
2421
diff
changeset
|
43 syn match sassMixing "\%([{};]\s*\|^\s*\)\@<=@include" nextgroup=sassMixinName skipwhite |
713a4965ee7f
Runtime file updates. (Tim Pope)
Bram Moolenaar <bram@vim.org>
parents:
2421
diff
changeset
|
44 syn match sassExtend "\%([{};]\s*\|^\s*\)\@<=@extend" |
4681
2eb30f341e8d
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2526
diff
changeset
|
45 syn match sassPlaceholder "\%([{};]\s*\|^\s*\)\@<=%" nextgroup=sassMixinName skipwhite |
2eb30f341e8d
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2526
diff
changeset
|
46 |
2eb30f341e8d
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2526
diff
changeset
|
47 syn match sassFunctionName "[[:alnum:]_-]\+" contained nextgroup=sassCssAttribute |
2eb30f341e8d
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2526
diff
changeset
|
48 syn match sassFunctionDecl "\%([{};]\s*\|^\s*\)\@<=@function" nextgroup=sassFunctionName skipwhite |
2eb30f341e8d
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2526
diff
changeset
|
49 syn match sassReturn "\%([{};]\s*\|^\s*\)\@<=@return" |
1668 | 50 |
51 syn match sassEscape "^\s*\zs\\" | |
52 syn match sassIdChar "#[[:alnum:]_-]\@=" nextgroup=sassId | |
53 syn match sassId "[[:alnum:]_-]\+" contained | |
54 syn match sassClassChar "\.[[:alnum:]_-]\@=" nextgroup=sassClass | |
55 syn match sassClass "[[:alnum:]_-]\+" contained | |
56 syn match sassAmpersand "&" | |
57 | |
58 " TODO: Attribute namespaces | |
59 " TODO: Arithmetic (including strings and concatenation) | |
60 | |
4681
2eb30f341e8d
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2526
diff
changeset
|
61 syn region sassInclude start="@import" end=";\|$" contains=scssComment,cssStringQ,cssStringQQ,cssURL,cssUnicodeEscape,cssMediaType |
2415 | 62 syn region sassDebugLine end=";\|$" matchgroup=sassDebug start="@debug\>" contains=@sassCssAttributes,sassVariable,sassFunction |
63 syn region sassWarnLine end=";\|$" matchgroup=sassWarn start="@warn\>" contains=@sassCssAttributes,sassVariable,sassFunction | |
4681
2eb30f341e8d
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2526
diff
changeset
|
64 syn region sassControlLine matchgroup=sassControl start="@\%(if\|else\%(\s\+if\)\=\|while\|for\|each\)\>" end="[{};]\@=\|$" contains=sassFor,@sassCssAttributes,sassVariable,sassFunction |
2eb30f341e8d
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2526
diff
changeset
|
65 syn keyword sassFor from to through in contained |
1668 | 66 |
67 syn keyword sassTodo FIXME NOTE TODO OPTIMIZE XXX contained | |
2415 | 68 syn region sassComment start="^\z(\s*\)//" end="^\%(\z1 \)\@!" contains=sassTodo,@Spell |
69 syn region sassCssComment start="^\z(\s*\)/\*" end="^\%(\z1 \)\@!" contains=sassTodo,@Spell | |
1668 | 70 |
71 hi def link sassCssComment sassComment | |
72 hi def link sassComment Comment | |
2415 | 73 hi def link sassDefault cssImportant |
74 hi def link sassVariable Identifier | |
75 hi def link sassFunction Function | |
1668 | 76 hi def link sassMixing PreProc |
77 hi def link sassMixin PreProc | |
4681
2eb30f341e8d
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2526
diff
changeset
|
78 hi def link sassPlaceholder PreProc |
2415 | 79 hi def link sassExtend PreProc |
4681
2eb30f341e8d
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2526
diff
changeset
|
80 hi def link sassFunctionDecl PreProc |
2eb30f341e8d
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2526
diff
changeset
|
81 hi def link sassReturn PreProc |
1668 | 82 hi def link sassTodo Todo |
83 hi def link sassInclude Include | |
2415 | 84 hi def link sassDebug sassControl |
85 hi def link sassWarn sassControl | |
2202 | 86 hi def link sassControl PreProc |
87 hi def link sassFor PreProc | |
1668 | 88 hi def link sassEscape Special |
89 hi def link sassIdChar Special | |
90 hi def link sassClassChar Special | |
2415 | 91 hi def link sassInterpolationDelimiter Delimiter |
1668 | 92 hi def link sassAmpersand Character |
93 hi def link sassId Identifier | |
94 hi def link sassClass Type | |
95 | |
96 let b:current_syntax = "sass" | |
97 | |
98 " vim:set sw=2: |