summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorrabite0 <rabite@posteo.de>2019-04-27 19:11:51 +0200
committerGitHub <noreply@github.com>2019-04-27 19:11:51 +0200
commit939697d919796ac48415a394654a0251a37f084d (patch)
treeca1029b96ec0a99266d3b023a9f7aba1bccb4228 /README.md
parent103ac52a5ef07b154c28d6a985a86ff6ca8c2d50 (diff)
Select files and enter directories by calling external program (#27)
* select file/dir with external program * multi-file select with external prog * last adjustions and README update * separated cd/selection into their own functions * update README
Diffstat (limited to 'README.md')
-rw-r--r--README.md5
1 files changed, 5 insertions, 0 deletions
diff --git a/README.md b/README.md
index eaf71d7..ee4e7e4 100644
--- a/README.md
+++ b/README.md
@@ -22,6 +22,7 @@ A big thanks to ranger and its developers. Without its inspiration this wouldn't
* Asynchronous multi-threaded IO
* Tabs
* Multi-file selection
+* Enter directories/select files using external command like fzf
* ranger import for bookmarks/tags
* minibuffer with completion and filename/selection/tab/directory substitution
* subprocess viewer that shows output of started subprocesses
@@ -88,6 +89,8 @@ hunter reads $XDG_CONFIG_HOME/hunter/config at startup. On macOS it reads $HOME/
```
animation=on
show_hidden=off
+select_cmd=find -type f | fzf -m
+cd_cmd=find -type d | fzf
```
## Drop into hunter cwd on quit
@@ -121,6 +124,7 @@ By default hunter uses vi-style keybindings. If you use a QWERTY-like keyboard l
| Alt(S) | search prev |
| Ctrl(f) | filter |
| space | multi select file |
+| Alt(space) | select with external program |
| v | invert selections |
| t | toggle tag |
| h | toggle show hidden |
@@ -130,6 +134,7 @@ By default hunter uses vi-style keybindings. If you use a QWERTY-like keyboard l
| k | select prev by mtime |
| d | toggle dirs first |
| / | turbo cd |
+| Alt(/) | enter dir with external program |
| Q | quit with dir/selections |
| L | run in background |
| ~ | goto prev cwd |