mirror of
https://github.com/zsh-users/zsh-autosuggestions.git
synced 2024-11-18 09:51:06 +01:00
Add magic prefix to distinguish completion lines
from possible garbage output generated by the completion function
This commit is contained in:
parent
3734b1eb4e
commit
4ca0501c25
2 changed files with 3 additions and 2 deletions
|
@ -110,7 +110,7 @@ compadd () {
|
||||||
# description to be displayed afterwards
|
# description to be displayed afterwards
|
||||||
# (( $#__dscr >= $i )) && dscr=" -- ${${__dscr[$i]}##$__hits[$i] #}" || dscr=
|
# (( $#__dscr >= $i )) && dscr=" -- ${${__dscr[$i]}##$__hits[$i] #}" || dscr=
|
||||||
|
|
||||||
print - $IPREFIX$apre$hpre$__hits[$i]$dsuf$hsuf$asuf$dscr
|
print - $'\1'$IPREFIX$apre$hpre$__hits[$i]$dsuf$hsuf$asuf$dscr
|
||||||
|
|
||||||
done
|
done
|
||||||
|
|
||||||
|
|
|
@ -19,7 +19,8 @@ zpty -w z "source '${0:a:h}/completion-server-init.zsh'"
|
||||||
read-to-null() {
|
read-to-null() {
|
||||||
while zpty -r z chunk; do
|
while zpty -r z chunk; do
|
||||||
[[ $chunk == *$'\0'* ]] && break
|
[[ $chunk == *$'\0'* ]] && break
|
||||||
print -n - $chunk
|
[[ $chunk != $'\1'* ]] && continue # ignore what doesnt start with '1'
|
||||||
|
print -n - ${chunk:1}
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue