From 3cea9086177641cea541fb55d002b0304a238353 Mon Sep 17 00:00:00 2001 From: mgild Date: Fri, 13 Jul 2018 11:01:14 -0700 Subject: [PATCH] Updated Examples (markdown) --- Examples.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Examples.md b/Examples.md index ca1e281..683268a 100644 --- a/Examples.md +++ b/Examples.md @@ -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 "${*##-* }" )"