diff options
| author | Steven Xu <stevenxxiu@users.noreply.github.com> | 2023-03-06 05:49:09 +1100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-03-05 18:49:09 +0000 |
| commit | 2e79e73af32793f7fe103b81246a5ef5a6e1cfbe (patch) | |
| tree | 1916278c4aa294f5fca3b7bcf29802eecf81e1fa /atuin-client/config.toml | |
| parent | Up arrow filter_mode setting default to global filter mode (#758) (diff) | |
| download | atuin-2e79e73af32793f7fe103b81246a5ef5a6e1cfbe.zip | |
feat: add common default keybindings (#719)
* feat: add common default keybindings
* feat: add `WORD_SEPARATORS` to config as `word_chars`, as this is what *Zsh* calls it
* feat: add option for *Emacs* word jumping
* feat: scroll with `PageUp` and `PageDown`, cf #374
Diffstat (limited to 'atuin-client/config.toml')
| -rw-r--r-- | atuin-client/config.toml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/atuin-client/config.toml b/atuin-client/config.toml index 0c9b4ede..a3c255b6 100644 --- a/atuin-client/config.toml +++ b/atuin-client/config.toml @@ -38,6 +38,15 @@ ## possible values: return-original, return-query # exit_mode = "return-original" +## possible values: emacs, subl +# word_jump_mode = "emacs" + +## characters that count as a part of a word +# word_chars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" + +## number of context lines to show when scrolling by pages +# scroll_context_lines = 1 + ## prevent commands matching any of these regexes from being written to history. ## Note that these regular expressions are unanchored, i.e. if they don't start ## with ^ or end with $, they'll match anywhere in the command. |
