summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2024-03-17 16:20:14 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2024-03-17 16:20:14 +0900
commit0145b82ea03734201daff6b2c6c67e3e0ce34fe4 (patch)
tree47ac9eaf1aae1a9532513ffbf8b767fadce277fd
parentb4efe7aab7e14e6f2b02daa171b369d672a25bd2 (diff)
Update README
-rw-r--r--README.md13
1 files changed, 3 insertions, 10 deletions
diff --git a/README.md b/README.md
index 6ffe8bee..07928b72 100644
--- a/README.md
+++ b/README.md
@@ -220,16 +220,9 @@ Add the following line to your shell configuration file.
> You can disable CTRL-T or ALT-C binding by setting `FZF_CTRL_T_COMMAND` or
> `FZF_ALT_C_COMMAND` to an empty string when sourcing the script.
> For example, to disable ALT-C binding:
-> ```sh
-> # bash
-> FZF_ALT_C_COMMAND= eval "$(fzf --bash)"
->
-> # zsh
-> FZF_ALT_C_COMMAND= eval "$(fzf --zsh)"
->
-> # fish
-> fzf --fish | FZF_ALT_C_COMMAND= source
-> ```
+> * bash: `FZF_ALT_C_COMMAND= eval "$(fzf --bash)"`
+> * zsh: `FZF_ALT_C_COMMAND= eval "$(fzf --zsh)"`
+> * fish: `fzf --fish | FZF_ALT_C_COMMAND= source`
> Setting the variables after sourcing the script will have no effect.
### As Vim plugin