diff options
| author | Lucas Trzesniewski <lucas.trzesniewski@gmail.com> | 2025-10-07 00:18:09 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-10-06 18:18:09 -0400 |
| commit | 8ca8165c1255c513bbd3711881015d7a119d5e0d (patch) | |
| tree | 210085cb5f76043ad8467e36185c9a016b422c9f /crates/atuin-client/config.toml | |
| parent | feat: more accurately filter secret tokens (#2932) (diff) | |
| download | atuin-8ca8165c1255c513bbd3711881015d7a119d5e0d.zip | |
feat: add shell pipelines to command chaining (#2938)
I wanted to use `command_chaining` to write a pipeline (`cmdA | cmdB`)
and was genuinely surprised it didn't work.
## Checks
- [x] I am happy for maintainers to push small adjustments to this PR,
to speed up the review cycle
- [x] I have checked that there are no existing pull requests for the
same thing
Diffstat (limited to 'crates/atuin-client/config.toml')
| -rw-r--r-- | crates/atuin-client/config.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/atuin-client/config.toml b/crates/atuin-client/config.toml index 476a95db..c40461ab 100644 --- a/crates/atuin-client/config.toml +++ b/crates/atuin-client/config.toml @@ -158,7 +158,7 @@ # This applies for new installs. Old installs will keep the old behaviour unless configured otherwise. enter_accept = true -## Defaults to false. If enabled, when triggered after && or ||, Atuin will complete commands to chain rather than replace the current line. +## Defaults to false. If enabled, when triggered after &&, || or |, Atuin will complete commands to chain rather than replace the current line. # command_chaining = false ## Defaults to "emacs". This specifies the keymap on the startup of `atuin |
