You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
fzf/shell
Junegunn Choi 82067463b8 [completion] _fzf_complete_COMMAND_post for post processing
e.g.

_fzf_complete_foo() {
  _fzf_complete "--multi --reverse --header-lines=3" "$@" < <(
    ls -al
  )
}

_fzf_complete_foo_post() {
  awk '{print $NF}'
}

[ -n "$BASH" ] && complete -F _fzf_complete_foo -o default -o bashdefault foo
9 years ago
..
completion.bash [completion] _fzf_complete_COMMAND_post for post processing 9 years ago
completion.zsh [completion] _fzf_complete_COMMAND_post for post processing 9 years ago
key-bindings.bash Pass FZF_DEFAULT_OPTS to non-interactive bash instance 9 years ago
key-bindings.fish [fish] Fix intermittent errors on CTRL-T 9 years ago
key-bindings.zsh [zsh] Fix #404 - Escape $ in $LBUFFER 9 years ago