Skip to content

Commit c209e41

Browse files
committed
update
1 parent 95b6153 commit c209e41

2 files changed

Lines changed: 14 additions & 9 deletions

File tree

client/src/extension.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ export function activate(context: ExtensionContext) {
128128
configuration: async (_params, _token, _next) => {
129129
// For the experimental server, we don't want to send the full configuration
130130
// We send only setting inside rescript.settings, i.e, server settings
131-
return [workspace.getConfiguration("rescript.settings")]
131+
return [workspace.getConfiguration("rescript.settings")];
132132
},
133133
},
134134
},

package.json

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -158,14 +158,6 @@
158158
"type": "object",
159159
"title": "ReScript",
160160
"properties": {
161-
"rescript.experimentalServerPath": {
162-
"type": [
163-
"string",
164-
"null"
165-
],
166-
"default": null,
167-
"description": "Path to the experimental ReScript language server binary."
168-
},
169161
"rescript.settings.askToStartBuild": {
170162
"scope": "language-overridable",
171163
"type": "boolean",
@@ -255,6 +247,19 @@
255247
],
256248
"default": "info",
257249
"description": "Verbosity of ReScript language server logs sent to the Output channel."
250+
},
251+
"rescript.experimentalServerPath": {
252+
"type": [
253+
"string",
254+
"null"
255+
],
256+
"default": null,
257+
"description": "Path to the experimental ReScript language server binary."
258+
},
259+
"rescript.settings.hover.supportMarkdownLinks": {
260+
"type": "boolean",
261+
"default": true,
262+
"description": "Enable markdown links in hover responses. Experimental server setting is required for this to work."
258263
}
259264
}
260265
},

0 commit comments

Comments
 (0)