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: docs/src/client_configuration.md
+2
Original file line number
Diff line number
Diff line change
@@ -65,6 +65,8 @@ The vast majority of language servers can communicate over stdio. To use stdio,
65
65
66
66
Some language servers can also act as a TCP server accepting incoming TCP connections. So: the language server subprocess is started by this package, and the subprocess will then open a TCP listener port. The editor can then connect as a client and initiate the communication. To use this mode, set `tcp_port` to a positive number designating the port to connect to on `localhost`.
67
67
68
+
Optionally in this case, you can omit the `command` setting if you don't want Sublime LSP to manage the language server process and you'll take care of it yourself.
69
+
68
70
### TCP - localhost - editor acts as a TCP server
69
71
70
72
Some _LSP servers_ instead expect the _LSP client_ to act as a _TCP server_. The _LSP server_ will then connect as a _TCP client_, after which the _LSP client_ is expected to initiate the communication. To use this mode, set `tcp_port` to a negative number designating the port to bind to for accepting new TCP connections.
Copy file name to clipboardExpand all lines: docs/src/language_servers.md
+2
Original file line number
Diff line number
Diff line change
@@ -188,6 +188,8 @@ Follow installation instructions on [LSP-gopls](https://github.com/sublimelsp/LS
188
188
}
189
189
```
190
190
191
+
If you encounter high cpu load or any other issues you can try omitting the [command] line, and ensure the godot editor is running while you work in sublime.
192
+
191
193
## GraphQL
192
194
193
195
Follow installation instructions on [LSP-graphql](https://github.com/sublimelsp/LSP-graphql).
0 commit comments