mirror of
https://github.com/zsh-users/zsh-autosuggestions.git
synced 2024-11-18 09:51:06 +01:00
20 lines
494 B
Bash
20 lines
494 B
Bash
|
|
||
|
#--------------------------------------------------------------------#
|
||
|
# Feature Detection #
|
||
|
#--------------------------------------------------------------------#
|
||
|
|
||
|
_zsh_autosuggest_feature_detect() {
|
||
|
typeset -g _ZSH_AUTOSUGGEST_ZPTY_RETURNS_FD
|
||
|
typeset -h REPLY
|
||
|
|
||
|
zpty $ZSH_AUTOSUGGEST_PTY_NAME :
|
||
|
|
||
|
if (( REPLY )); then
|
||
|
_ZSH_AUTOSUGGEST_ZPTY_RETURNS_FD=1
|
||
|
else
|
||
|
_ZSH_AUTOSUGGEST_ZPTY_RETURNS_FD=0
|
||
|
fi
|
||
|
|
||
|
zpty -d $ZSH_AUTOSUGGEST_PTY_NAME
|
||
|
}
|