LSP
LSP copied to clipboard
Client implementation of the Language Server Protocol for Sublime Text
* OS and language server: macOS, every language servers * How you installed LSP (Package Control or from git?) Package Control * Minimal reproduction steps 1 run `Project: Edit Project`,...
**Is your feature request related to a problem? Please describe.** When you work with code, the popup often appears, even if you don't want it. I.e. in 90% cases you...
**Describe the bug** `erlang_ls` expects leading triggerCharacter to be preserved on completion, which is not always true in Sublime-LSP. I'm not even sure it is bug, it look like unclear...
When used with the ConvertToUTF8 plugin Clangd fails to update file when saving file(file encoding is cp932) Does not occur with the ST3 version of the LSP plugin language server...
**Is your feature request related to a problem? Please describe.** When showing a completion list, sometimes instead of finding a specific item, the user wants to browse available options and...
example: in the Sublime-Linters plugins,the Clang extenstion configure include directory only need setting like this: ```json "clang":{ "I":[ "${folder}/src", "${folder}/include", "${folder}/inc/", "${folder}/" ] } ```
Hey guys. I will start with a small disclaimer. I completely understand the logic behind this: > Specifically, LSP avoids building functionality that does not exist in Sublime Text, or...
I am trying to debug an issue with `rust-analyzer`. According to [the RA docs](https://rust-analyzer.github.io/manual.html#configuration) I can get some useful information out of it by increasing logging. When I do that,...
**Describe the bug** Just found some error logs, which seem to point to LSP having issues in its cleanup code, which is called when ST exits. **To Reproduce** Steps to...
**Is your feature request related to a problem? Please describe.** Since LSP 3.17 there [DidCreateFiles Notification](https://microsoft.github.io/language-server-protocol/specifications/specification-3-17/#workspace_didCreateFiles) which allows servers to take action. From example Metals would add the correct package...