aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src/commands/typed.rs
diff options
context:
space:
mode:
authorEthan Kiang2023-01-03 13:24:48 +0000
committerGitHub2023-01-03 13:24:48 +0000
commit0dbee9590baed10bef3c6c32420b8a5802204657 (patch)
treec47bcfc335deafce1968b536469f54522717ffe0 /helix-term/src/commands/typed.rs
parenta895a4e53a81da2264fee9dd3b5eec313794ea0b (diff)
Fix language config reload logic (#5381)
Diffstat (limited to 'helix-term/src/commands/typed.rs')
-rw-r--r--helix-term/src/commands/typed.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-term/src/commands/typed.rs b/helix-term/src/commands/typed.rs
index 5c0cd654..de24c4fb 100644
--- a/helix-term/src/commands/typed.rs
+++ b/helix-term/src/commands/typed.rs
@@ -1797,7 +1797,7 @@ fn run_shell_command(
let shell = &cx.editor.config().shell;
let (output, success) = shell_impl(shell, &args.join(" "), None)?;
if success {
- cx.editor.set_status("Command succeed");
+ cx.editor.set_status("Command succeeded");
} else {
cx.editor.set_error("Command failed");
}