Skip to content

Instantly share code, notes, and snippets.

View chrisnorris's full-sized avatar

chris norris chrisnorris

View GitHub Profile
@chrisnorris
chrisnorris / fcd.fish
Last active October 8, 2019 04:40 — forked from rumpelsepp/fcd.fish
Fuzzy cd for fish shell using fzf
function fcd --description "Fuzzy change directory"
if set -q argv[1]
set searchdir $argv[1]
else
set searchdir $HOME
end
# https://github.com/fish-shell/fish-shell/issues/1362
set -l tmpfile (mktemp)
find $searchdir \( ! -regex '.*/\..*' \) ! -name __pycache__ -type d | fzf > $tmpfile