add "zsh-" prefix to history-substring-search

@zsh-users/zsh-syntax-highlighting and
@zsh-users/zsh-history-substring-search don't follow the same naming
convention.

This commit just rename history-substring-search.zsh and
history-substring-search.plugin.zsh to zsh-history-substring-search.zsh
and zsh-history-substring-search.plugin.zsh respectively.
This commit is contained in:
Colin Hebert 2011-07-23 19:15:07 +01:00 committed by Suraj N. Kurapati
parent 15f63dea7f
commit dfc7ac9d06
3 changed files with 7 additions and 7 deletions

View file

@ -0,0 +1,12 @@
# This file integrates the zsh-history-substring-search script into oh-my-zsh.
source "$ZSH/plugins/zsh-history-substring-search/zsh-history-substring-search.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