jethrokuan / fzf

Ef-🐟-ient fish keybindings for fzf
MIT License
861 stars 66 forks source link

Is it possible to go to a parent directory? #144

Open dessalines opened 4 years ago

dessalines commented 4 years ago

I'm trying to us fzf to cd around, but find that I have to close it out every time I want to go to a parent directory. Is this possible?

dessalines commented 4 years ago

I've found one workaround, is to add these:

  set -U FZF_CD_COMMAND "fd -t d . $HOME"
  set -U FZF_CD_WITH_HIDDEN_COMMAND "fd -t d -H . $HOME"
  set -U FZF_OPEN_COMMAND "fd . $HOME"
  set -U FZF_FIND_FILE_COMMAND "fd -H . $HOME"

So that it always searches from $HOME