m/fzf
1
0
mirror of https://github.com/junegunn/fzf.git synced 2025-11-18 08:13:40 -05:00

Add reverse and no-sort to fasd example

Leo Lou
2015-07-17 17:37:34 +08:00
parent ff9aa2c0bb
commit 731dadaf39

@@ -64,7 +64,7 @@ Suggested by [@l4u](https://github.com/l4u):
# fj - changing directory with fasd
fj() {
local dir
dir=$(fasd -dl | fzf +m) && cd "$dir"
dir=$(fasd -Rdl | fzf --no-sort +m) && cd "$dir"
}
```