Fix repeat search with HIST_FIND_NO_DUPS.

This commit is contained in:
Geza Lore 2016-05-23 21:42:08 +01:00
parent b546105d7e
commit 3e64e0e9fa

View file

@ -190,6 +190,11 @@ _history-substring-search-begin() {
return; return;
fi fi
#
# Clear the previous result.
#
_history_substring_search_result=''
if [[ -z $BUFFER ]]; then if [[ -z $BUFFER ]]; then
# #
# If the buffer is empty, we will just act like up-history/down-history # If the buffer is empty, we will just act like up-history/down-history