mirror of
https://git.decapod.one/brethil/dotfiles
synced 2024-11-24 04:21:31 +01:00
zsh: avoid printing command name in completion wrapper
This commit is contained in:
parent
ee531d18cd
commit
c329308759
|
@ -224,7 +224,7 @@ __completion_wrapper(){
|
||||||
# completion functions
|
# completion functions
|
||||||
local _completion_function=$1
|
local _completion_function=$1
|
||||||
local _completion_base=$2
|
local _completion_base=$2
|
||||||
if ! command -v $_completion_function; then
|
if ! command -v $_completion_function &>/dev/null; then
|
||||||
$_completion_base
|
$_completion_base
|
||||||
fi
|
fi
|
||||||
$_completion_function
|
$_completion_function
|
||||||
|
|
Loading…
Reference in New Issue
Block a user