2016-03-01 20:45:55 +01:00
|
|
|
|
|
|
|
#--------------------------------------------------------------------#
|
|
|
|
# Default Suggestion Strategy #
|
|
|
|
#--------------------------------------------------------------------#
|
|
|
|
# Suggests the most recent history item that matches the given
|
|
|
|
# prefix.
|
|
|
|
#
|
|
|
|
|
|
|
|
_zsh_autosuggest_strategy_default() {
|
2016-03-05 03:22:19 +01:00
|
|
|
local prefix="$(_zsh_autosuggest_escape_command "$1")"
|
2016-03-01 20:45:55 +01:00
|
|
|
|
2016-03-06 05:03:14 +01:00
|
|
|
# Get the keys of the history items that match
|
|
|
|
local -a histkeys
|
|
|
|
histkeys=(${(k)history[(r)$prefix*]})
|
2016-03-01 20:45:55 +01:00
|
|
|
|
2016-03-06 05:03:14 +01:00
|
|
|
# Echo the value of the first key
|
|
|
|
echo -E "${history[$histkeys[1]]}"
|
2016-03-01 20:45:55 +01:00
|
|
|
}
|