aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src
diff options
context:
space:
mode:
authorZJPzjp2022-10-15 16:07:42 +0000
committerGitHub2022-10-15 16:07:42 +0000
commit0e8e7cae3b88be32098e533e78398314c1dc2012 (patch)
treef8fbea2f6e394add2de70e3bc92f1fa58e4815f0 /helix-term/src
parentaef37d43d7a943fdf58ade7df4d8defbef9a7ce0 (diff)
fix `:insert-output` doc: inserting output **before** each selection (#4286)
Diffstat (limited to 'helix-term/src')
-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 78d25c1a..8ab10da4 100644
--- a/helix-term/src/commands/typed.rs
+++ b/helix-term/src/commands/typed.rs
@@ -2071,7 +2071,7 @@ pub const TYPABLE_COMMAND_LIST: &[TypableCommand] = &[
TypableCommand {
name: "insert-output",
aliases: &[],
- doc: "Run shell command, inserting output after each selection.",
+ doc: "Run shell command, inserting output before each selection.",
fun: insert_output,
completer: None,
},