diff options
author | Marc Cornellà <marc.cornella@live.com> | 2020-03-24 09:54:00 +0100 |
---|---|---|
committer | Marc Cornellà <marc.cornella@live.com> | 2020-03-24 09:54:00 +0100 |
commit | fd534eb979aa296dd94a78040e77559a4c4dcdde (patch) | |
tree | 149c59efbaa50855e7e35555aca00256c376b553 /plugins/history-substring-search/history-substring-search.plugin.zsh | |
parent | 2a3a940a4553a271d45722538697a667f9b55293 (diff) | |
download | zsh-fd534eb979aa296dd94a78040e77559a4c4dcdde.tar.gz zsh-fd534eb979aa296dd94a78040e77559a4c4dcdde.tar.bz2 zsh-fd534eb979aa296dd94a78040e77559a4c4dcdde.zip |
history-substring-search: update to upstream version 2019-05-12
Updates OMZ's copy to commit 0f80b8eb3368b46e5e573c1d91ae69eb095db3fb from zsh-users/zsh-history-substring-search
Diffstat (limited to 'plugins/history-substring-search/history-substring-search.plugin.zsh')
-rw-r--r-- | plugins/history-substring-search/history-substring-search.plugin.zsh | 17 |
1 files changed, 3 insertions, 14 deletions
diff --git a/plugins/history-substring-search/history-substring-search.plugin.zsh b/plugins/history-substring-search/history-substring-search.plugin.zsh index 7883a65f3..05bdbcd75 100644 --- a/plugins/history-substring-search/history-substring-search.plugin.zsh +++ b/plugins/history-substring-search/history-substring-search.plugin.zsh @@ -1,20 +1,9 @@ -# This file integrates the zsh-history-substring-search script into oh-my-zsh. - -source "${0:r:r}.zsh" - -if test "$CASE_SENSITIVE" = true; then - unset HISTORY_SUBSTRING_SEARCH_GLOBBING_FLAGS -fi - -if test "$DISABLE_COLOR" = true; then - unset HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_FOUND - unset HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_NOT_FOUND -fi +0=${(%):-%N} +source ${0:A:h}/zsh-history-substring-search.zsh # Bind terminal-specific up and down keys -# Bind in both emacs and vi modes so it works in both, and is not -# sensitive to whether this is loaded before or after the vi-mode plugin + if [[ -n "$terminfo[kcuu1]" ]]; then bindkey -M emacs "$terminfo[kcuu1]" history-substring-search-up bindkey -M viins "$terminfo[kcuu1]" history-substring-search-up |