From 28a5bad8197826b945395f7f64e420b255533b9f Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Fri, 1 Sep 2017 18:13:50 +0900 Subject: [PATCH] Revert fa9a072^...fa9a072 on Configuring shell key bindings --- Configuring-shell-key-bindings.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Configuring-shell-key-bindings.md b/Configuring-shell-key-bindings.md index 03ad2fc..bc951a2 100644 --- a/Configuring-shell-key-bindings.md +++ b/Configuring-shell-key-bindings.md @@ -48,7 +48,7 @@ export FZF_CTRL_R_OPTS='--sort --exact' Commands that are too long are not fully visible on screen. We can use `--preview` option to display the full command on the preview window. In the following example, we bind `?` key for toggling the preview window. ```sh -export FZF_CTRL_R_OPTS="--preview 'echo {} | fold -w $(tput cols)' --preview-window down:3:hidden --bind '?:toggle-preview'" +export FZF_CTRL_R_OPTS="--preview 'echo {}' --preview-window down:3:hidden --bind '?:toggle-preview'" ``` ### Directly executing the command (CTRL-X CTRL-R)