mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-10 12:40:58 +02:00
48709: suppress error messages from comptry
This commit is contained in:
parent
231c049c02
commit
3fe6bd56ed
2 changed files with 4 additions and 1 deletions
|
@ -1,5 +1,8 @@
|
||||||
2021-05-15 Bart Schaefer <schaefer@zsh.org>
|
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:
|
* 48707: Doc/Zsh/contrib.yo, Functions/Zle/zed-set-file-name:
|
||||||
fix keymap handling when zed invokes read-from-minibuffer
|
fix keymap handling when zed invokes read-from-minibuffer
|
||||||
|
|
||||||
|
|
|
@ -84,7 +84,7 @@ _help_sort_tags() {
|
||||||
[[ "$help_funcs[$curcontext]" != *${f}* ]] &&
|
[[ "$help_funcs[$curcontext]" != *${f}* ]] &&
|
||||||
help_funcs[$curcontext]+=$'\0'"${f}"
|
help_funcs[$curcontext]+=$'\0'"${f}"
|
||||||
help_tags[${curcontext}${f}]+=",${argv}:${f}"
|
help_tags[${curcontext}${f}]+=",${argv}:${f}"
|
||||||
comptry "$@"
|
comptry "$@" 2>/dev/null
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue