We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b54cc93 commit 81d63faCopy full SHA for 81d63fa
package.json
@@ -1274,7 +1274,7 @@
1274
},
1275
"robotcode.documentationServer.startOnDemand": {
1276
"type": "boolean",
1277
- "default": true,
+ "default": false,
1278
"description": "Starts the internal HTTP server only if needed."
1279
}
1280
packages/language_server/src/robotcode/language_server/robotframework/configuration.py
@@ -52,7 +52,7 @@ class RoboTidyConfig(ConfigBase):
52
class DocumentationServerConfig(ConfigBase):
53
start_port: int = 3100
54
end_port: int = 3199
55
- start_on_demand: bool = True
+ start_on_demand: bool = False
56
57
58
@config_section("robotcode.inlayHints")
0 commit comments