Update bash key binding example

pull/17/head
Junegunn Choi 11 years ago
parent 07aee79bd8
commit cf0ca8578c

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

Loading…
Cancel
Save