You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: package.json
+16-6Lines changed: 16 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@
3
3
"displayName": "vscode-erg",
4
4
"description": "Erg language support for Visual Studio Code",
5
5
"publisher": "erg-lang",
6
-
"version": "0.1.11",
6
+
"version": "0.1.12",
7
7
"engines": {
8
8
"vscode": "^1.70.0"
9
9
},
@@ -54,27 +54,37 @@
54
54
"vscode-erg.ergpath.path": {
55
55
"type": "string",
56
56
"default": "",
57
-
"description": "Path to `.erg` directory"
57
+
"markdownDescription": "Path to `.erg` directory"
58
58
},
59
59
"vscode-erg.executablePath": {
60
60
"type": "string",
61
61
"default": "",
62
-
"description": "Path to `erg` executable"
62
+
"markdownDescription": "Path to `erg` executable"
63
63
},
64
64
"vscode-erg.lsp.inlayHints": {
65
65
"type": "boolean",
66
66
"default": true,
67
-
"description": "Enable inlay hints"
67
+
"markdownDescription": "Enable inlay hints"
68
68
},
69
69
"vscode-erg.lsp.semanticTokens": {
70
70
"type": "boolean",
71
71
"default": true,
72
-
"description": "Enable semantic tokens"
72
+
"markdownDescription": "Enable semantic tokens"
73
73
},
74
74
"vscode-erg.lsp.hover": {
75
75
"type": "boolean",
76
76
"default": true,
77
-
"description": "Enable hover"
77
+
"markdownDescription": "Enable hover"
78
+
},
79
+
"vscode-erg.lsp.smartCompletion": {
80
+
"type": "boolean",
81
+
"default": true,
82
+
"markdownDescription": "Enable smart completion (see [ELS features](https://github.com/erg-lang/erg/blob/main/crates/els/doc/features.md))"
83
+
},
84
+
"vscode-erg.lsp.checkOnType": {
85
+
"type": "boolean",
86
+
"default": false,
87
+
"markdownDescription": "Perform checking each time any character is entered. This improves the accuracy of completion, etc., but may slow down the execution of ELS"
0 commit comments