jwortmann

Results 131 comments of jwortmann

> Like a temporary X-ray vision. What do you think? I'm not sure about the solution with a key binding. I could imagine that it would work well if there...

Thanks, I will probably try it out with the Go server next weekend. Nice that it seems to work so far, I didn't test my implementation at all ;) >...

By the way, there is another small problem with Sublime's phantoms when you delete a block of code. Because the new inlay hints from the LSP specs don't have a...

It's pretty cool, but at least Shift+Tab conflicts with a default keybinding when the autocomplete popup is visible (described in the ST preferences under "tab_completion"). Maybe it's better to leave...

I would maybe even remove the setting and always use the "insert" mode with the regular Tab/Enter binding for completions - just like it is now, and because it's the...

You need to use ```jsonc { "disabled_capabilities": { "hoverProvider": true }, } ``` in the client settings (i.e. per server) to disable LSP's hover popups. But at the same time,...

I wouldn't use it personally, because I use the "show_references_in_quick_panel" option, but I don't think the idea is too bad. Here is a possible implementation - it doesn't work correctly...

Yes, that could be an alternative. I just wanted to demonstrate that it is possible with a relatively small amount of code, and that it would be easy to make...

As far as I understand, this config option would be set dependent on whether the server is "project-based" (like most servers are), or "single-file-based" (e.g. LSP-json, LSP-html, LSP-css). I think...

> An alternative suggestion I have is `single_file_mode` that, I believe, I've seen used somewhere else (maybe neovim) and I think I like that one the most. Wouldn't that just...