1
0
mirror of https://github.com/skywind3000/z.lua synced 2026-03-24 00:29:48 +00:00

Updated Effective with fzf (markdown)

Linwei
2019-02-20 18:07:04 +08:00
parent 613252266e
commit 44393582a5

@@ -42,7 +42,7 @@ Define a new `zii` shell function to override `z -I`:
```bash
function zii() {
local $dest="$(z -l "$@"|fzf --nth 2 --reverse --inline-info --tac +s -e --height 35%)"
[ -n "$dest" ] && cd "$dest"
local $dir="$(z -l "$@"|fzf --nth 2 --reverse --inline-info --tac +s -e --height 35%)"
[ -n "$dir" ] && cd "$dest"
}
```