Release 2.13.5

This commit is contained in:
2024-04-04 13:33:03 +03:00
parent d30d512eb6
commit f01f35238d
6 changed files with 38 additions and 25 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