Release 2.13.5

This commit is contained in:
2024-04-04 13:33:03 +03:00
parent 99ca0cb2fd
commit 9819ed761e
5 changed files with 37 additions and 24 deletions

View File

@ -736,4 +736,12 @@ _shtab_ahriman() {
typeset -A opt_args
_shtab_ahriman "$@"
if [[ $zsh_eval_context[-1] == eval ]]; then
# eval/source/. command, register function for later
compdef _shtab_ahriman -N ahriman
else
# autoload from fpath, call function directly
_shtab_ahriman "$@"
fi