mirror of
https://github.com/zsh-users/zsh-autosuggestions.git
synced 2024-11-18 09:51:06 +01:00
Merge pull request #473 from zsh-users/refactor-null-byte-split
cleanup: Split on null bytes instead of pattern matching
This commit is contained in:
commit
8f3f59542a
2 changed files with 2 additions and 2 deletions
|
@ -122,7 +122,7 @@ _zsh_autosuggest_strategy_completion() {
|
||||||
# versions of zsh (older than 5.3), we sometimes get extra bytes after
|
# versions of zsh (older than 5.3), we sometimes get extra bytes after
|
||||||
# the second null byte, so trim those off the end.
|
# the second null byte, so trim those off the end.
|
||||||
# See http://www.zsh.org/mla/workers/2015/msg03290.html
|
# See http://www.zsh.org/mla/workers/2015/msg03290.html
|
||||||
suggestion="${${line#*$'\0'}%$'\0'*}"
|
suggestion="${${(@0)line}[2]}"
|
||||||
} always {
|
} always {
|
||||||
# Destroy the pty
|
# Destroy the pty
|
||||||
zpty -d $ZSH_AUTOSUGGEST_COMPLETIONS_PTY_NAME
|
zpty -d $ZSH_AUTOSUGGEST_COMPLETIONS_PTY_NAME
|
||||||
|
|
|
@ -608,7 +608,7 @@ _zsh_autosuggest_strategy_completion() {
|
||||||
# versions of zsh (older than 5.3), we sometimes get extra bytes after
|
# versions of zsh (older than 5.3), we sometimes get extra bytes after
|
||||||
# the second null byte, so trim those off the end.
|
# the second null byte, so trim those off the end.
|
||||||
# See http://www.zsh.org/mla/workers/2015/msg03290.html
|
# See http://www.zsh.org/mla/workers/2015/msg03290.html
|
||||||
suggestion="${${line#*$'\0'}%$'\0'*}"
|
suggestion="${${(@0)line}[2]}"
|
||||||
} always {
|
} always {
|
||||||
# Destroy the pty
|
# Destroy the pty
|
||||||
zpty -d $ZSH_AUTOSUGGEST_COMPLETIONS_PTY_NAME
|
zpty -d $ZSH_AUTOSUGGEST_COMPLETIONS_PTY_NAME
|
||||||
|
|
Loading…
Reference in a new issue