mirror of
https://github.com/junegunn/fzf.git
synced 2025-11-18 00:03:39 -05:00
I forgot to comment out a line.
@@ -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"
|
||||||
|
|||||||
Reference in New Issue
Block a user