jwortmann

Results 216 comments of jwortmann

> 1. trigger wont insert anything? Correct, as far as I can tell. It will use the original CompletionItem from the language server again, for the inserted text, so we...

I thought that I had verified my recent "pseudo-fix" for this, but I have tested again now and I can confirm that it doesn't work. Also I've checked out this...

I would probably call them `"include_patterns"` and `"exclude_patterns"`, and they should accept a list of either glob patterns, or [Sublime patterns](https://www.sublimetext.com/docs/file_patterns.html) (probably the latter). Two more use cases: 1. I...

I would say it's pretty clear that opening the links from your Markdown example should be realized via `textDocument/documentLink`. This is exactly the purpose of that LSP method, and this...

> @jwortmann Yes these are links, but speaking from the users perspective in my LSP these are also URIs to documents that define a resource. I don't want to _click_...

I made a PR #2113 to ignore diagnostics for files within `folder_exclude_patterns`. There is no general functionality to configure other files or folders where diagnostics should be ignored, but I...

It's not implemented yet, because it is relatively new. Note that servers *must* support UTF-16, so > If server capabilities only expect utf8 is not possible.

> It's also conceivable that the "format on save" option could be enabled in a per-project This is not only conceivable, but already possible: https://github.com/sublimelsp/LSP/blob/8696a5d136635625bcd3eed3c42d6e1defd399bc/LSP.sublime-settings#L14-L16 For this you need to...

> Is there a way to configure a hot key or action that would disable format-on-save for the current session? Currently there is no dynamic toggle for that setting, but...

I think this is also the cause for infinite initialize -> exit loops when you move a tab between windows and if it was the last tab of the session...