about summary refs log tree commit diff
path: root/docs/dev/lsp-features.md
AgeCommit message (Collapse)AuthorLines
2020-01-08Update lsp-features.mdJeremy Kolb-2/+2
2019-07-10Remove executeCommandProvider: apply_code_action.Michael Bolin-2/+0
This appears to have been introduced ages ago in https://github.com/rust-analyzer/rust-analyzer/commit/be742a587704f27f4e503c50f549aa9ec1527fcc but has since been removed. As it stands, it is problematic if multiple instances of the rust-analyzer LSP are launched during the same VS Code session because VS Code complains about multiple LSP servers trying to register the same command. Most LSP servers workaround this by parameterizing the command by the process id. For example, this is where `rls` does this: https://github.com/rust-lang/rls/blob/ff0b9057c8f62bc4f8113d741e96c9587ef1a817/rls/src/server/mod.rs#L413-L421 Though `apply_code_action` does not seems to be used, so it seems better to delete it than to parameterize it.
2019-04-23Add to LSP featureskjeremy-1/+1
2019-04-21fix docsAleksey Kladov-1/+1
2019-03-20introduce docs dirAleksey Kladov-0/+74