From a39490f0767e03a9d231f2b4a4b7dcdd639808af Mon Sep 17 00:00:00 2001 From: Robbie Smith Date: Tue, 11 Apr 2017 20:57:03 -0600 Subject: [PATCH] I forgot to comment out a line. --- Examples.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Examples.md b/Examples.md index 7f44e4e..8e7293e 100644 --- a/Examples.md +++ b/Examples.md @@ -97,7 +97,7 @@ fd() { ```sh # Another fd - cd into the selected directory # This one differs from the above, by only showing the sub directories and not - showing the directories within those. +# showing the directories within those. fd() { DIR=`find * -maxdepth 0 -type d -print 2> /dev/null | fzf-tmux` \ && cd "$DIR"