Update bash key binding example

This commit is contained in:
Junegunn Choi 2013-11-27 10:20:27 +09:00
parent 07aee79bd8
commit cf0ca8578c

View File

@ -213,7 +213,7 @@ bind '"\er": redraw-current-line'
# CTRL-T - Paste the selected file path into the command line # CTRL-T - Paste the selected file path into the command line
fsel() { fsel() {
find ${1:-*} | fzf -m | while read item; do find ${1:-*} | fzf -m | while read item; do
printf '%q ' $item printf '%q ' "$item"
done done
echo echo
} }