Raoul Wols
Raoul Wols
I would say yes. If for instance the icon is determined by a package setting, you can just load that setting when updating the regions.
I'm fairly certain it's possible. With the ST4 api: set `view.settings().set("mini_auto_complete", True)` when a suitable view is opened, and always enable the flag `sublime.DYNAMIC_COMPLETIONS` in `ViewEventListener.on_query_completions`. This will make the...
This seems to be ancient, but the correct way to do this is to put the relevant options in the `"settings"` dictionary of the `.sublime-project` file. e.g. ```json { "folders":...
A pre-commit hook returns exit status 0 but I still get this in a GitSavvy output panel: ``` `/usr/bin/git commit -q -F -` failed with following output: On branch add-willsave-waituntil...
I think this is because we use the bundled `mono` while we should point omnisharp to use the `mono` from Unity.
If you open the LSP log panel with “LSP: Toggle Log Panel”, then you can see what capabilities the server has exactly by looking at the response of the `initialize`...
Maybe easier: run `view.run_command("lsp_dump_buffer_capabilities")` in the ST console when you have a .cs file open.
It seems JoeRobich added it just 18 days ago: https://github.com/OmniSharp/omnisharp-roslyn/blob/c214d900ca250556bb09156fcb2b27d217a3a523/src/OmniSharp.LanguageServerProtocol/Handlers/OmniSharpDocumentHighlightHandler.cs
But maybe it's just a placeholder, I haven't looked much into it: https://github.com/OmniSharp/omnisharp-roslyn/pull/2463
v1.39.2 should contain that functionality: https://github.com/OmniSharp/omnisharp-roslyn/releases/tag/v1.39.2