Lots of little async cleanups

This commit is contained in:
Eric Freese
2017-01-27 15:18:26 -07:00
parent c3425870f1
commit e3eb286ea2
7 changed files with 160 additions and 102 deletions

View File

@@ -15,6 +15,6 @@ _zsh_autosuggest_strategy_default() {
local -a histkeys
histkeys=(${(k)history[(r)$prefix*]})
# Echo the value of the first key
echo -E "${history[$histkeys[1]]}"
# Give back the value of the first key
suggestion="${history[$histkeys[1]]}"
}