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() {
|
2017-01-24 19:58:06 -07:00
|
|
|
setopt localoptions EXTENDED_GLOB
|
|
|
|
|
|
|
|
|
|
fc -lnrm "${1//(#m)[\\()\[\]|*?~]/\\$MATCH}*" 1 2>/dev/null | head -n 1
|
2016-03-01 12:45:55 -07:00
|
|
|
}
|