Add a comment explaining post-completion hook

This commit is contained in:
Eric Freese 2019-04-17 23:28:20 -06:00
parent 5339d2703d
commit 2b05f5ed2d
2 changed files with 6 additions and 0 deletions

View file

@ -14,6 +14,9 @@ _zsh_autosuggest_capture_postcompletion() {
}
_zsh_autosuggest_capture_completion_widget() {
# Add a post-completion hook to be called after all completions have been
# gathered. The hook can modify compstate to affect what is done with the
# gathered completions.
local -a +h comppostfuncs
comppostfuncs=(_zsh_autosuggest_capture_postcompletion)

View file

@ -496,6 +496,9 @@ _zsh_autosuggest_capture_postcompletion() {
}
_zsh_autosuggest_capture_completion_widget() {
# Add a post-completion hook to be called after all completions have been
# gathered. The hook can modify compstate to affect what is done with the
# gathered completions.
local -a +h comppostfuncs
comppostfuncs=(_zsh_autosuggest_capture_postcompletion)