We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 595010f commit ab4cc0dCopy full SHA for ab4cc0d
3 files changed
extensions/fsharp/language-configuration.json
@@ -22,6 +22,10 @@
22
["'", "'"]
23
],
24
"folding": {
25
- "offSide": true
+ "offSide": true,
26
+ "markers": {
27
+ "start": "^\\s*//#region",
28
+ "end": "^\\s*//#endregion"
29
+ }
30
}
31
extensions/fsharp/package.json
@@ -17,6 +17,10 @@
17
"language": "fsharp",
18
"scopeName": "source.fsharp",
19
"path": "./syntaxes/fsharp.json"
20
+ }],
21
+ "snippets": [{
+ "language": "fsharp",
+ "path": "./snippets/fsharp.json"
}]
extensions/fsharp/snippets/fsharp.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"
13
14
+ "description": "Folding Region End"
15
16
+}
0 commit comments