diff options
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | Completion/Base/Widget/_complete_help | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -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 diff --git a/Completion/Base/Widget/_complete_help b/Completion/Base/Widget/_complete_help index 252b0e281..69855de9d 100644 --- a/Completion/Base/Widget/_complete_help +++ b/Completion/Base/Widget/_complete_help @@ -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 } |