m/fzf
1
0
mirror of https://github.com/junegunn/fzf.git synced 2025-11-18 16:45:38 -05:00

Updated Examples (markdown)

mgild
2018-07-13 11:01:14 -07:00
parent 9e13e70607
commit 3cea908617

@@ -795,7 +795,7 @@ like normal autojump when used with arguments but displays an fzf prompt when us
```sh
j() {
if [[ "$#" -ne 0 ]]; then
autojump $@
cd $(autojump $@)
return
fi
cd "$(autojump -s | sed '/_____/Q; s/^[0-9,.:]*\s*//' | fzf --height 40% --nth 1.. --reverse --inline-info +s --tac --query "${*##-* }" )"