From 0ca9052b641403d58e86645899545a4283fcb83e Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Tue, 10 Jan 2017 23:54:18 +0900 Subject: [PATCH] Updated Examples (markdown) --- Examples.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Examples.md b/Examples.md index 77ef927..f6c73b1 100644 --- a/Examples.md +++ b/Examples.md @@ -75,7 +75,7 @@ fdr() { get_parent_dirs $(dirname "$1") fi } - local DIR=$(get_parent_dirs $(realpath "${1:-$(pwd)}") | fzf-tmux --tac) + local DIR=$(get_parent_dirs $(realpath "${1:-$PWD}") | fzf-tmux --tac) cd "$DIR" } ```