瀏覽代碼

Merge pull request #473 from zsh-users/refactor-null-byte-split

cleanup: Split on null bytes instead of pattern matching
pull/494/head
Eric Freese 4 年之前
committed by GitHub
父節點
當前提交
8f3f59542a
沒有發現已知的金鑰在資料庫的簽署中 GPG Key ID: 4AEE18F83AFDEB23
共有 2 個文件被更改,包括 2 次插入2 次删除
  1. +1
    -1
      src/strategies/completion.zsh
  2. +1
    -1
      zsh-autosuggestions.zsh

+ 1
- 1
src/strategies/completion.zsh 查看文件

@ -122,7 +122,7 @@ _zsh_autosuggest_strategy_completion() {
# versions of zsh (older than 5.3), we sometimes get extra bytes after
# the second null byte, so trim those off the end.
# See http://www.zsh.org/mla/workers/2015/msg03290.html
suggestion="${${line#*$'\0'}%$'\0'*}"
suggestion="${${(@0)line}[2]}"
} always {
# Destroy the pty
zpty -d $ZSH_AUTOSUGGEST_COMPLETIONS_PTY_NAME

+ 1
- 1
zsh-autosuggestions.zsh 查看文件

@ -608,7 +608,7 @@ _zsh_autosuggest_strategy_completion() {
# versions of zsh (older than 5.3), we sometimes get extra bytes after
# the second null byte, so trim those off the end.
# See http://www.zsh.org/mla/workers/2015/msg03290.html
suggestion="${${line#*$'\0'}%$'\0'*}"
suggestion="${${(@0)line}[2]}"
} always {
# Destroy the pty
zpty -d $ZSH_AUTOSUGGEST_COMPLETIONS_PTY_NAME

Loading…
取消
儲存