We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ccce4f commit d0be636Copy full SHA for d0be636
2 files changed
extensions/css/package.json
@@ -43,6 +43,10 @@
43
"path": "./syntaxes/css.tmLanguage.json"
44
}
45
],
46
+ "snippets": [{
47
+ "language": "css",
48
+ "path": "./snippets/css.snippets.json"
49
+ }],
50
"configuration": [
51
{
52
"order": 22,
extensions/css/snippets/css.snippets.json
@@ -0,0 +1,16 @@
1
+{
2
+ "Region Start": {
3
+ "prefix": "#region",
4
+ "body": [
5
+ "/*#region $0*/"
6
+ ],
7
+ "description": "Folding Region Start"
8
+ },
9
+ "Region End": {
10
+ "prefix": "#endregion",
11
12
+ "/*#endregion $0*/"
13
14
+ "description": "Folding Region End"
15
+ }
16
+}
0 commit comments