fzf/shell
Junegunn Choi 50b7608f9d
Change custom fuzzy completion API
To make it easier to write more complex fzf options. Although this
does not break backward compatibility, users are encouraged to update
their code accordingly.

  # Before
  _fzf_complete "FZF_ARG1 FZF_ARG2..." "$@" < <(
    # Print candidates
  )

  # After
  _fzf_complete FZF_ARG1 FZF_ARG2... -- "$@" < <(
    # Print candidates
  )
2020-03-11 18:32:35 +09:00
..
completion.bash Change custom fuzzy completion API 2020-03-11 18:32:35 +09:00
completion.zsh Change custom fuzzy completion API 2020-03-11 18:32:35 +09:00
key-bindings.bash [bash] Fix --query argument of CTRL-R 2020-02-29 12:01:55 +09:00
key-bindings.fish [fish] Ignore empty environment variables 2020-02-28 17:51:07 +09:00
key-bindings.zsh [zsh] Prevent the current directory from appearing as ~dir in prompts (#1774) 2019-12-01 23:20:26 +09:00