aboutsummaryrefslogtreecommitdiffstats
path: root/atuin-client/config.toml
diff options
context:
space:
mode:
authorSteven Xu <stevenxxiu@users.noreply.github.com>2023-03-06 05:49:09 +1100
committerGitHub <noreply@github.com>2023-03-05 18:49:09 +0000
commit2e79e73af32793f7fe103b81246a5ef5a6e1cfbe (patch)
tree1916278c4aa294f5fca3b7bcf29802eecf81e1fa /atuin-client/config.toml
parentUp arrow filter_mode setting default to global filter mode (#758) (diff)
downloadatuin-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.toml9
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.