File tree Expand file tree Collapse file tree 7 files changed +1784
-1
lines changed Expand file tree Collapse file tree 7 files changed +1784
-1
lines changed Original file line number Diff line number Diff line change
1
+ - Syntax highlighting for coffee and postcss. #50 and #56 .
2
+ - Various grammar fixes.
3
+
1
4
### 0.3.6 | 2017-02-21
2
5
3
6
- Support nested ` <template> ` . #48 .
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ You can [open an issue](https://github.com/octref/vetur/issues/new) for bugs or
11
11
- Linting for css/scss/less/js
12
12
- Syntax highlighting for:
13
13
- html/jade/pug
14
- - css/sass/scss/less/stylus
14
+ - css/sass/scss/less/stylus/postcss
15
15
- js/ts/coffee
16
16
- Embedded snippet support
17
17
- Use vue snippet outside all regions
@@ -83,6 +83,7 @@ See [CONTRIBUTING.md](https://github.com/octref/vetur/blob/master/CONTRIBUTING.m
83
83
- Logo from [ vuejs/vuejs.org] ( https://github.com/vuejs/vuejs.org )
84
84
- Grammar based on [ vuejs/vue-syntax-highlight] ( https://github.com/vuejs/vue-syntax-highlight )
85
85
- Sass grammar based on [ P233/Syntax-highlighting-for-Sass] ( https://github.com/P233/Syntax-highlighting-for-Sass )
86
+ - PostCSS grammar based on [ azat-io/atom-language-postcss] ( https://github.com/azat-io/atom-language-postcss )
86
87
- Language Server based on VSCode's [ html extension] ( https://github.com/Microsoft/vscode/tree/master/extensions/html )
87
88
88
89
## License
Original file line number Diff line number Diff line change
1
+ {
2
+ "comments" : {
3
+ // symbol used for single line comment. Remove this entry if your language does not support line comments
4
+ "lineComment" : " //" ,
5
+ // symbols used for start and end a block comment. Remove this entry if your language does not support block comments
6
+ "blockComment" : [ " /*" , " */" ]
7
+ },
8
+ // symbols used as brackets
9
+ "brackets" : [
10
+ [" {" , " }" ],
11
+ [" [" , " ]" ],
12
+ [" (" , " )" ]
13
+ ],
14
+ // symbols that are auto closed when typing
15
+ "autoClosingPairs" : [
16
+ [" {" , " }" ],
17
+ [" [" , " ]" ],
18
+ [" (" , " )" ],
19
+ [" \" " , " \" " ],
20
+ [" '" , " '" ]
21
+ ],
22
+ // symbols that that can be used to surround a selection
23
+ "surroundingPairs" : [
24
+ [" {" , " }" ],
25
+ [" [" , " ]" ],
26
+ [" (" , " )" ],
27
+ [" \" " , " \" " ],
28
+ [" '" , " '" ]
29
+ ]
30
+ }
Original file line number Diff line number Diff line change 56
56
" sass"
57
57
],
58
58
"configuration" : " ./languages/sass.json"
59
+ },
60
+ {
61
+ "id" : " postcss" ,
62
+ "aliases" : [
63
+ " PostCSS" ,
64
+ " POSTCSS"
65
+ ],
66
+ "configuration" : " ./languages/postcss.json"
59
67
}
60
68
],
61
69
"grammars" : [
72
80
"source.css.sass" : " sass" ,
73
81
"source.css.scss" : " scss" ,
74
82
"source.css.less" : " less" ,
83
+ "source.css.postcss" : " postcss" ,
75
84
"source.stylus" : " stylus" ,
76
85
"source.js" : " javascript" ,
77
86
"source.ts" : " typescript" ,
83
92
"scopeName" : " source.css.sass" ,
84
93
"path" : " ./syntaxes/sass.json"
85
94
},
95
+ {
96
+ "language" : " postcss" ,
97
+ "scopeName" : " source.css.postcss" ,
98
+ "path" : " ./syntaxes/postcss.json"
99
+ },
86
100
{
87
101
"language" : " vue-html" ,
88
102
"scopeName" : " text.vue-html" ,
You can’t perform that action at this time.
0 commit comments