diff options
Diffstat (limited to 'shell/completion.bash')
| -rw-r--r-- | shell/completion.bash | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/shell/completion.bash b/shell/completion.bash index 3d3349e3..5786d046 100644 --- a/shell/completion.bash +++ b/shell/completion.bash @@ -9,7 +9,7 @@ # - $FZF_COMPLETION_TRIGGER (default: '**') # - $FZF_COMPLETION_OPTS (default: empty) -[[ $- =~ i ]] || return 0 +if [[ $- =~ i ]]; then # To use custom commands instead of find, override _fzf_compgen_{path,dir} @@ -581,3 +581,5 @@ _fzf_setup_completion 'var' export unset printenv _fzf_setup_completion 'alias' unalias _fzf_setup_completion 'host' telnet _fzf_setup_completion 'proc' kill + +fi |
