lsp-cli 0.1.0

Command-line tool for talking to Language Server Protocol (LSP) servers from the terminal.
1
2
3
4
5
6
use crate::cli::UpdateArgs;
use crate::config::ConfigStore;

pub(super) fn run(_: &UpdateArgs, config: &ConfigStore) -> Result<String, String> {
    crate::update::run_update_with_cli(&config.cli)
}