2016-03-01 12:45:55 -07:00
|
|
|
|
|
|
|
|
#--------------------------------------------------------------------#
|
|
|
|
|
# Default Suggestion Strategy #
|
|
|
|
|
#--------------------------------------------------------------------#
|
|
|
|
|
# Suggests the most recent history item that matches the given
|
|
|
|
|
# prefix.
|
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
_zsh_autosuggest_strategy_default() {
|
2016-06-10 13:24:45 -06:00
|
|
|
fc -lnrm "$1*" 1 2>/dev/null | head -n 1
|
2016-03-01 12:45:55 -07:00
|
|
|
}
|