mirror of
https://github.com/zsh-users/zsh-autosuggestions.git
synced 2024-11-18 09:51:06 +01:00
Add a comment explaining post-completion hook
This commit is contained in:
parent
5339d2703d
commit
2b05f5ed2d
2 changed files with 6 additions and 0 deletions
|
@ -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)
|
||||
|
||||
|
|
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in a new issue