Standalone: Sublime LSP
Goodday,
Is there anyway to get the Haxe Language Server working on Sublime LSP? I've tried this for myself by installing LSP on Sublime, adding a Syntax definition and then using this configuration.
{
"clients": {
"haxe": {
"command": [
"node", "<path_to_haxe_language_server_cloned_repo>/bin/server.js"
],
"selector": "source.hx | source.hx.2 | source.haxe | source.haxe.2",
"enabled": true
}
}
}
This seems™ to load but doesn't do anything. Does anyone have a working configuration for this? Is it even possible?
I would love to use Haxe in Sublime4, but the default plugin (from package manager) is WAY TOO slow, so I would ratter use the Haxe Language Server.
I've read: #171 but that thread was hijacked by neovim! :) So hence asking it here.
Many thanks for any help on this! Please Help Me!
The problem is possibly https://github.com/vshaxe/vshaxe/issues/359
@Gama11 Thanks for the reply!
Is there a workaround? Or must we just wait for a fix?
Well, the workaround is to trigger an onDidChangeConfiguration event. Not sure if there's an automated way to do that with Sublime.
+1 for this. I'm investigating getting it working on ST4 as well.