From faedae708e4c288ffd40e7fad3d6a796b48e804a Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Fri, 23 Jun 2017 01:50:45 +0900 Subject: [PATCH] Fix FZF_CTRL_T_COMMAND example for fish See #944 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 93c76288..da4a0cc7 100644 --- a/README.md +++ b/README.md @@ -457,7 +457,7 @@ make use of this feature. `$dir` defaults to `.` when the last token is not a valid directory. Example: ```sh -set -l FZF_CTRL_T_COMMAND "command find -L \$dir -type f 2> /dev/null | sed '1d; s#^\./##'" +set -g FZF_CTRL_T_COMMAND "command find -L \$dir -type f 2> /dev/null | sed '1d; s#^\./##'" ``` [License](LICENSE)