File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 } ,
Original file line number Diff line number Diff line change 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" ,
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 },
You can’t perform that action at this time.
0 commit comments