1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-09-01 21:51:40 +02:00

48709: suppress error messages from comptry

This commit is contained in:
Bart Schaefer 2021-05-15 13:26:56 -07:00
parent 231c049c02
commit 3fe6bd56ed
2 changed files with 4 additions and 1 deletions

View file

@ -1,5 +1,8 @@
2021-05-15 Bart Schaefer <schaefer@zsh.org>
* 48709: Completion/Base/Widget/_complete_help: suppress error
messages from comptry
* 48707: Doc/Zsh/contrib.yo, Functions/Zle/zed-set-file-name:
fix keymap handling when zed invokes read-from-minibuffer

View file

@ -84,7 +84,7 @@ _help_sort_tags() {
[[ "$help_funcs[$curcontext]" != *${f}* ]] &&
help_funcs[$curcontext]+=$'\0'"${f}"
help_tags[${curcontext}${f}]+=",${argv}:${f}"
comptry "$@"
comptry "$@" 2>/dev/null
fi
}