store workspace+language server state #3

Open
opened 2021-03-30 04:40:24 +02:00 by koalp · 0 comments
Owner

The workspace and language server state will allow to continue using a running language server, it should therefore be stored.

The commande could something like the following :

$ language-server-supervisor status
❌ stopped
path: ~/src/my-project
command: /usr/bin/rust-analyzer

$ language-server-supervisor status
✅ running
path: ~/src/my-project
command: /usr/bin/rust-analyzer

There could also be a language-server-supervisor --all to see all running language servers. (healthcheck ?)

$ language-server-supervisor healthcheck
✅ language-server-supervisor-daemon

✅ rust-analyzer: ~/src/my-rust-project
✅ clangd       : ~/src/my-cpp-project
⚠️ python       : ~/src/my-py-project
   You may want to install a python language server, none have been detected
❌ julia        : ~/src/my-julia-project
   The julia language server couldn’t be started
   Run lssd status -p ~/src/my-julia-project for more information
The workspace and language server state will allow to continue using a running language server, it should therefore be stored. The commande could something like the following : ```bash-session $ language-server-supervisor status ❌ stopped path: ~/src/my-project command: /usr/bin/rust-analyzer $ language-server-supervisor status ✅ running path: ~/src/my-project command: /usr/bin/rust-analyzer ``` There could also be a `language-server-supervisor --all to see all running language servers`. (`healthcheck` ?) ```bash-session $ language-server-supervisor healthcheck ✅ language-server-supervisor-daemon ✅ rust-analyzer: ~/src/my-rust-project ✅ clangd : ~/src/my-cpp-project ⚠️ python : ~/src/my-py-project You may want to install a python language server, none have been detected ❌ julia : ~/src/my-julia-project The julia language server couldn’t be started Run lssd status -p ~/src/my-julia-project for more information ```
koalp added this to the 0.1.0 --- minimal working poc milestone 2021-03-30 04:40:24 +02:00
koalp added the
status
accepted
type
enhancement
labels 2021-03-30 04:40:24 +02:00
Sign in to join this conversation.
No description provided.