LSP
LSP copied to clipboard
Client implementation of the Language Server Protocol for Sublime Text
### Environment 1. Install LSP and LSP-lemminx 2. install XSL package 3. create a new XML stylesheet ```xsl { | } ``` ### The problem LemMinX is designed to provide...
https://github.com/user-attachments/assets/9b12a0ed-bdb2-4f17-91ec-9816d1774257 Seems like server is not fast enough to parse document after change and applies formatting to old version? **Environment:** - OS: Arch Linux 6.12.1 - Sublime Text version: 4180...
https://github.com/user-attachments/assets/bb0c793d-e463-4162-bdce-593c6327fccd
Fix #2561
Experimental / work in progress Implementation details are open for discussion and it would be nice to gather some opinions how inline completions should work. - For now in this...
Add 2 user configuration options that would allow to suppress the attention-demanding UI blocking dialogs, instead redirecting warnings/errors to a status message and the full console message Simple way to...
I am using https://github.com/SofusA/roslyn-language-server (which basically wraps the microsoft roslyn lsp server since sublime lsp doesn't support named pipes yet) for C# but there are no diagnostics. The reason seems...
UnoCSS: https://github.com/unocss/unocss It should be similiar to [tailwindcss plugin](https://github.com/sublimelsp/LSP-tailwindcss.git). [Example plugin for nvim](https://github.com/xna00/unocss-language-server.git)
When client specifies `auto_complete_selector` then it looks like currently it completely replaces the global `auto_complete_selector`: https://github.com/sublimelsp/LSP/blob/c7d622c2890ee33ed66d349d58c69275b40be26d/plugin/session_view.py#L210-L220 Shouldn't there be a way to merge specified selector with the global one? There...