-
Notifications
You must be signed in to change notification settings - Fork 129
Home
John Hawthorn edited this page May 6, 2016
·
13 revisions
Here are some scripts people have built using fzy. Please feel free to add your own.
FILE=$(ag -l -g '' | fzy) && vim "$FILE"
This has to be a shell function (not script file) in order to use cd
fcd(){
cd "$(find -type d | fzy)"
}
#!/bin/sh
GEM=$(bundle list | cut -f 4 -d' ' | fzy)
DESTINATION=$(bundle show $GEM)
tmux new-window -c "$DESTINATION" -n "$GEM"