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

I forgot to comment out a line.

Robbie Smith
2017-04-11 20:57:03 -06:00
parent 010035f852
commit a39490f076

@@ -97,7 +97,7 @@ fd() {
```sh ```sh
# Another fd - cd into the selected directory # Another fd - cd into the selected directory
# This one differs from the above, by only showing the sub directories and not # 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() { fd() {
DIR=`find * -maxdepth 0 -type d -print 2> /dev/null | fzf-tmux` \ DIR=`find * -maxdepth 0 -type d -print 2> /dev/null | fzf-tmux` \
&& cd "$DIR" && cd "$DIR"