aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src/commands
diff options
context:
space:
mode:
authorPhilipp Mildenberger2023-03-19 23:08:24 +0000
committerPhilipp Mildenberger2023-05-18 19:58:17 +0000
commit8ab6d7be5e1b6f36215820ef616c2a9feb2306fa (patch)
tree8716bbca03440815478c81981b80f792dc830d6a /helix-term/src/commands
parent1d5d5dab4718b9db40a20037c1cb1edf66f7991a (diff)
Use let else instead of variable and fix some error messages
Co-authored-by: Pascal Kuthe <pascal.kuthe@semimod.de>
Diffstat (limited to 'helix-term/src/commands')
-rw-r--r--helix-term/src/commands/lsp.rs20
-rw-r--r--helix-term/src/commands/typed.rs18
2 files changed, 18 insertions, 20 deletions
diff --git a/helix-term/src/commands/lsp.rs b/helix-term/src/commands/lsp.rs
index 9e9639bf..a1bd291c 100644
--- a/helix-term/src/commands/lsp.rs
+++ b/helix-term/src/commands/lsp.rs
@@ -389,7 +389,7 @@ pub fn symbol_picker(cx: &mut Context) {
if futures.is_empty() {
cx.editor
- .set_error("No Language server does support document symbols");
+ .set_error("No configured language server supports document symbols");
return;
}
@@ -433,7 +433,7 @@ pub fn workspace_symbol_picker(cx: &mut Context) {
.collect();
if futures.is_empty() {
- editor.set_error("No Language server does support workspace symbols");
+ editor.set_error("No configured language server supports workspace symbols");
}
async move {
@@ -663,7 +663,7 @@ pub fn code_action(cx: &mut Context) {
if futures.is_empty() {
cx.editor
- .set_error("No Language server does support code actions");
+ .set_error("No configured language server supports code actions");
return;
}
@@ -1043,7 +1043,8 @@ where
},
);
} else {
- cx.editor.set_error("No language server supports {feature}");
+ cx.editor
+ .set_error("No configured language server supports {feature}");
}
}
@@ -1106,7 +1107,7 @@ pub fn goto_reference(cx: &mut Context) {
);
} else {
cx.editor
- .set_error("No language server supports goto-reference");
+ .set_error("No configured language server supports goto-reference");
}
}
@@ -1138,7 +1139,7 @@ pub fn signature_help_impl(cx: &mut Context, invoked: SignatureHelpInvoked) {
// automatically on backspace, trigger characters, etc.
if invoked == SignatureHelpInvoked::Manual {
cx.editor
- .set_error("No language server supports signature-help");
+ .set_error("No configured language server supports signature-help");
}
return;
}
@@ -1269,7 +1270,8 @@ pub fn hover(cx: &mut Context) {
let future = match request {
Some(future) => future,
None => {
- cx.editor.set_error("No language server supports hover");
+ cx.editor
+ .set_error("No configured language server supports hover");
return;
}
};
@@ -1393,7 +1395,7 @@ pub fn rename_symbol(cx: &mut Context) {
}
} else {
cx.editor
- .set_error("No language server supports symbol renaming");
+ .set_error("No configured language server supports symbol renaming");
}
},
)
@@ -1459,7 +1461,7 @@ pub fn select_references_to_symbol_under_cursor(cx: &mut Context) {
Some(future_offset_encoding) => future_offset_encoding,
None => {
cx.editor
- .set_error("No language server supports document-highlight");
+ .set_error("No configured language server supports document-highlight");
return;
}
};
diff --git a/helix-term/src/commands/typed.rs b/helix-term/src/commands/typed.rs
index 8cfc9fd2..9ab2aa4f 100644
--- a/helix-term/src/commands/typed.rs
+++ b/helix-term/src/commands/typed.rs
@@ -1330,23 +1330,19 @@ fn lsp_workspace_command(
return Ok(());
}
let doc = doc!(cx.editor);
- let id_options = doc
+ let Some((language_server_id, options)) = doc
.language_servers_with_feature(LanguageServerFeature::WorkspaceCommand)
.find_map(|ls| {
ls.capabilities()
.execute_command_provider
.as_ref()
.map(|options| (ls.id(), options))
- });
-
- let (language_server_id, options) = match id_options {
- Some(id_options) => id_options,
- None => {
- cx.editor.set_status(
- "No active language servers for this document support workspace commands",
- );
- return Ok(());
- }
+ })
+ else {
+ cx.editor.set_status(
+ "No active language servers for this document support workspace commands",
+ );
+ return Ok(());
};
if args.is_empty() {