zsh-autosuggestions/lib/get_suggestion.zsh
Eric Freese fc3f368acf Cleanup
2016-01-26 20:55:27 -07:00

11 lines
214 B
Bash

_zsh_autosuggest_get_suggestion() {
local prefix=$1
local history_items=(${history[(R)$prefix*]})
for cmd in $history_items; do
if [ "${cmd:0:$#prefix}" = "$prefix" ]; then
echo $cmd
break
fi
done
}