summaryrefslogtreecommitdiffstats
path: root/readme.md
diff options
context:
space:
mode:
Diffstat (limited to 'readme.md')
-rw-r--r--readme.md17
1 files changed, 17 insertions, 0 deletions
diff --git a/readme.md b/readme.md
index dc77d29..3b52482 100644
--- a/readme.md
+++ b/readme.md
@@ -116,6 +116,23 @@
- [x] hardcoded limit to 10 tabs
- [x] print selected path on quit
- [x] Alt+d call dragon-drop on selected file
+- [x] cd on quit:
+
+ fm prints its current directory when exiting
+
+ 1. Install a link to `fm` in your path or copy the binary
+
+ 2. Add this to .zshrc :
+
+ ```bash
+ function f() {
+ dest=$(fm $@)
+ if [[ ! -z $dest ]]
+ then
+ cd $dest
+ fi
+ }
+ ```
## TODO