bash-it/plugins/available/history-substring-search.pl...

11 lines
342 B
Bash

# shellcheck shell=bash
about-plugin 'search history using the substring already entered'
# enter a few characters and press UpArrow/DownArrow
# to search backwards/forwards through the history
if [[ ${SHELLOPTS} =~ (vi|emacs) ]]
then
bind '"\e[A":history-substring-search-backward'
bind '"\e[B":history-substring-search-forward'
fi