From cf0ca8578ce1e3ca930d74629ab521c6fa221ec6 Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Wed, 27 Nov 2013 10:20:27 +0900 Subject: [PATCH] Update bash key binding example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a9b8a91..0dee291 100644 --- a/README.md +++ b/README.md @@ -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 }