summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorrabite0 <rabite@posteo.de>2019-04-27 19:11:51 +0200
committerrabite <rabite@posteo.de>2019-04-27 19:12:33 +0200
commiteb913f39acbef08e967d05c1701d468e776a0674 (patch)
treebc62986032679d895685d5518b0680d11e3fb5a4 /README.md
parent80854f6c3a390b65bc54e9450bf8e805115dc1d4 (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 |