diff options
author | Robby Russell <robby@planetargon.com> | 2016-05-18 19:20:39 -0700 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2016-05-18 19:20:39 -0700 |
commit | 841d2b928704b4f8b7b9ca4a4579ea8e2c275f93 (patch) | |
tree | a1c6d6acd75903205983173ba97708e85d9ac0b8 /plugins/zsh-navigation-tools/znt-history-widget | |
parent | 5b9c6c15e209ffdd07158dbf8ddf803d9710e850 (diff) | |
parent | e2d157d5895717e983e5cc4e5df792a6a5dbe0ac (diff) | |
download | zsh-841d2b928704b4f8b7b9ca4a4579ea8e2c275f93.tar.gz zsh-841d2b928704b4f8b7b9ca4a4579ea8e2c275f93.tar.bz2 zsh-841d2b928704b4f8b7b9ca4a4579ea8e2c275f93.zip |
Merge pull request #5053 from psprint/master
znt: update to v2.1.15
Diffstat (limited to 'plugins/zsh-navigation-tools/znt-history-widget')
-rw-r--r-- | plugins/zsh-navigation-tools/znt-history-widget | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/plugins/zsh-navigation-tools/znt-history-widget b/plugins/zsh-navigation-tools/znt-history-widget index a4a26cbfc..479c2211b 100644 --- a/plugins/zsh-navigation-tools/znt-history-widget +++ b/plugins/zsh-navigation-tools/znt-history-widget @@ -4,6 +4,14 @@ local NLIST_START_IN_UNIQ_MODE=1 # Only if current $BUFFER doesn't come from history if [ "$HISTCMD" = "$HISTNO" ]; then + () { + setopt localoptions extendedglob + local -a match mbegin mend + local MATCH; integer MBEGIN MEND + + [ -n "$BUFFER" ] && BUFFER="${BUFFER%% ##} " + } + local NLIST_SET_SEARCH_TO="$BUFFER" fi |