summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorEllie Huxtable <e@elm.sh>2021-03-20 00:50:31 +0000
committerGitHub <noreply@github.com>2021-03-20 00:50:31 +0000
commit716c7722cda29bf612508bb96f51822a86e0f69e (patch)
treefa3c4c192fc05b078397fcd510d39ae78e46abfa /README.md
parent61607e023fbb916f376a7070f8b1ffd6ffe16849 (diff)
Add TUI, resolve #19, #17, #16 (#21)
Diffstat (limited to 'README.md')
-rw-r--r--README.md32
1 files changed, 3 insertions, 29 deletions
diff --git a/README.md b/README.md
index 30e6dd97..7874789b 100644
--- a/README.md
+++ b/README.md
@@ -29,10 +29,6 @@ As well as the expected command, A'tuin stores
- zsh
-## Requirements
-
-- [fzf](https://github.com/junegunn/fzf)
-
## Install
### AUR
@@ -77,9 +73,9 @@ to your `.zshrc`/`.bashrc`/whatever your shell uses.
### History search
-By default A'tuin will rebind ctrl-r to use fzf to fuzzy search your history.
-It will also rebind the up arrow to use fzf, just without sorting. You can
-prevent this by putting
+By default A'tuin will rebind ctrl-r and the up arrow to search your history.
+
+You can prevent this by putting
```
export ATUIN_BINDKEYS="false"
@@ -87,28 +83,6 @@ export ATUIN_BINDKEYS="false"
into your shell config.
-You may also change the default history selection. The default behaviour will search your entire history, however
-
-```
-export ATUIN_HISTORY="atuin history list --cwd"
-```
-
-will switch to only searching history for the current directory.
-
-Similarly,
-
-```
-export ATUIN_HISTORY="atuin history list --session"
-```
-
-will search for the current session only, and
-
-```
-export ATUIN_HISTORY="atuin history list --session --cwd"
-```
-
-will do both!
-
### Import history
```