diff --git a/Effective-with-fzf.md b/Effective-with-fzf.md index f7adfbf..675a5f0 100644 --- a/Effective-with-fzf.md +++ b/Effective-with-fzf.md @@ -46,3 +46,12 @@ function zii() { [ -n "$dir" ] && cd "$dest" } ``` + +or just ignore the `frecent` order: + +```bash +function zii() { + local $dir="$(z -l -s "$@"|fzf ---reverse -e --height 35%)" + [ -n "$dir" ] && cd "$dest" +} +``` \ No newline at end of file