mirror of
https://github.com/zsh-users/zsh-autosuggestions.git
synced 2025-02-08 16:46:14 +08:00
Fix error that was hidden in zpty
Without the quotes, this was blowing up with: _zsh_autosuggest_capture_postcompletion:unset:5: not enough arguments
This commit is contained in:
parent
2b05f5ed2d
commit
7e048c3f53
|
@ -10,7 +10,7 @@ _zsh_autosuggest_capture_postcompletion() {
|
|||
compstate[insert]=1
|
||||
|
||||
# Don't list completions
|
||||
unset compstate[list]
|
||||
unset 'compstate[list]'
|
||||
}
|
||||
|
||||
_zsh_autosuggest_capture_completion_widget() {
|
||||
|
|
|
@ -492,7 +492,7 @@ _zsh_autosuggest_capture_postcompletion() {
|
|||
compstate[insert]=1
|
||||
|
||||
# Don't list completions
|
||||
unset compstate[list]
|
||||
unset 'compstate[list]'
|
||||
}
|
||||
|
||||
_zsh_autosuggest_capture_completion_widget() {
|
||||
|
|
Loading…
Reference in New Issue
Block a user