summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorAlexey Shamrin <shamrin@gmail.com>2017-07-25 13:10:34 +0300
committerJunegunn Choi <junegunn.c@gmail.com>2017-07-25 19:10:34 +0900
commitbc3983181d992c564e069791b5c6549bde9bfeb3 (patch)
treecb355ce2a6779576028ed05ffaaed3636e19d006 /README.md
parent980b58ef5adad8d5d556ace537c68cb6f2189c7a (diff)
Update fish comments, because 2.6.0 was released (#991)
Diffstat (limited to 'README.md')
-rw-r--r--README.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/README.md b/README.md
index 41aaf532..ac0ba3a3 100644
--- a/README.md
+++ b/README.md
@@ -430,10 +430,10 @@ export FZF_DEFAULT_COMMAND='
#### Fish shell
-It's [a known bug of fish](https://github.com/fish-shell/fish-shell/issues/1362)
-(will be fixed in 2.6.0) that it doesn't allow reading from STDIN in command
-substitution, which means simple `vim (fzf)` won't work as expected. The
-workaround is to use the `read` fish command:
+Fish shell before version 2.6.0 [doesn't allow](https://github.com/fish-shell/fish-shell/issues/1362)
+reading from STDIN in command substitution, which means simple `vim (fzf)`
+doesn't work as expected. The workaround for fish 2.5.0 and earlier is to use
+the `read` fish command:
```sh
fzf | read -l result; and vim $result