mirror of https://github.com/helix-editor/helix
Add `:pipe-to` typable command that ignores shell output (#4931)
parent
d5ab974d38
commit
0b96021643
|
@ -71,4 +71,5 @@
|
||||||
| `:insert-output` | Run shell command, inserting output before each selection. |
|
| `:insert-output` | Run shell command, inserting output before each selection. |
|
||||||
| `:append-output` | Run shell command, appending output after each selection. |
|
| `:append-output` | Run shell command, appending output after each selection. |
|
||||||
| `:pipe` | Pipe each selection to the shell command. |
|
| `:pipe` | Pipe each selection to the shell command. |
|
||||||
|
| `:pipe-to` | Pipe each selection to the shell command, ignoring output. |
|
||||||
| `:run-shell-command`, `:sh` | Run a shell command |
|
| `:run-shell-command`, `:sh` | Run a shell command |
|
||||||
|
|
|
@ -1741,13 +1741,30 @@ fn insert_output(
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn pipe_to(
|
||||||
|
cx: &mut compositor::Context,
|
||||||
|
args: &[Cow<str>],
|
||||||
|
event: PromptEvent,
|
||||||
|
) -> anyhow::Result<()> {
|
||||||
|
pipe_impl(cx, args, event, &ShellBehavior::Ignore)
|
||||||
|
}
|
||||||
|
|
||||||
fn pipe(cx: &mut compositor::Context, args: &[Cow<str>], event: PromptEvent) -> anyhow::Result<()> {
|
fn pipe(cx: &mut compositor::Context, args: &[Cow<str>], event: PromptEvent) -> anyhow::Result<()> {
|
||||||
|
pipe_impl(cx, args, event, &ShellBehavior::Replace)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn pipe_impl(
|
||||||
|
cx: &mut compositor::Context,
|
||||||
|
args: &[Cow<str>],
|
||||||
|
event: PromptEvent,
|
||||||
|
behavior: &ShellBehavior,
|
||||||
|
) -> anyhow::Result<()> {
|
||||||
if event != PromptEvent::Validate {
|
if event != PromptEvent::Validate {
|
||||||
return Ok(());
|
return Ok(());
|
||||||
}
|
}
|
||||||
|
|
||||||
ensure!(!args.is_empty(), "Shell command required");
|
ensure!(!args.is_empty(), "Shell command required");
|
||||||
shell(cx, &args.join(" "), &ShellBehavior::Replace);
|
shell(cx, &args.join(" "), behavior);
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2292,6 +2309,13 @@ pub const TYPABLE_COMMAND_LIST: &[TypableCommand] = &[
|
||||||
fun: pipe,
|
fun: pipe,
|
||||||
completer: None,
|
completer: None,
|
||||||
},
|
},
|
||||||
|
TypableCommand {
|
||||||
|
name: "pipe-to",
|
||||||
|
aliases: &[],
|
||||||
|
doc: "Pipe each selection to the shell command, ignoring output.",
|
||||||
|
fun: pipe_to,
|
||||||
|
completer: None,
|
||||||
|
},
|
||||||
TypableCommand {
|
TypableCommand {
|
||||||
name: "run-shell-command",
|
name: "run-shell-command",
|
||||||
aliases: &["sh"],
|
aliases: &["sh"],
|
||||||
|
|
Loading…
Reference in New Issue