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() {
|
2017-01-25 03:58:06 +01:00
|
|
|
setopt localoptions EXTENDED_GLOB
|
|
|
|
|
2017-01-25 07:04:07 +01:00
|
|
|
local prefix="${1//(#m)[\\()\[\]|*?~]/\\$MATCH}"
|
|
|
|
|
|
|
|
# Get the keys of the history items that match
|
|
|
|
local -a histkeys
|
|
|
|
histkeys=(${(k)history[(r)$prefix*]})
|
|
|
|
|
2017-01-27 23:18:26 +01:00
|
|
|
# Give back the value of the first key
|
|
|
|
suggestion="${history[$histkeys[1]]}"
|
2016-03-01 20:45:55 +01:00
|
|
|
}
|