summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2015-10-05 01:10:00 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2015-10-05 01:48:45 +0900
commit8fa9e85980b8a7f291e5f749c93f11be7972a161 (patch)
treefda4f03c221019b2a27a1ea372a2c32433b35fa0 /bin
parent92a75c9563600a174e9ee8334853f99ed560492a (diff)
[zsh-completion] Allow custom completion function
While in bash you can externally register custom completion functions using `complete` command, it was not possible to do so in zsh without changing completion.zsh as the name of the supported commands are hard-coded within the code (See #362). With this commit, fzf-completion of zsh will first look if `_fzf_COMMAND_completion` exists and calls the function, so one can externally define completion functions for specific commands. This commit also tries to make the interface of (yet undocumented) _fzf_list_completion helper function consistent across bash and zsh. So the following code works both on bash and zsh. _fzf_pass_completion() { local pwdir=${PASSWORD_STORE_DIR-~/.password-store/} local stringsize="${#pwdir}" let "stringsize+=1" _fzf_list_completion '+m' "$@" << "EOF" find "$pwdir" -name "*.gpg" -print | cut -c "$stringsize"- | sed -e 's/\(.*\)\.gpg/\1/' EOF } # Only on bash complete -F _fzf_pass_completion -o default -o bashdefault pass Note that the suggested convention and the interface are not yet final and subject to change. /cc @d4ndo
Diffstat (limited to 'bin')
0 files changed, 0 insertions, 0 deletions