From dfc7ac9d06921f6eaaa32a3c068f63e5c2a62d32 Mon Sep 17 00:00:00 2001 From: Colin Hebert Date: Sat, 23 Jul 2011 19:15:07 +0100 Subject: [PATCH] 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. --- README | 6 +++--- ...ch.plugin.zsh => zsh-history-substring-search.plugin.zsh | 4 ++-- ...substring-search.zsh => zsh-history-substring-search.zsh | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) rename history-substring-search.plugin.zsh => zsh-history-substring-search.plugin.zsh (59%) rename history-substring-search.zsh => zsh-history-substring-search.zsh (99%) diff --git a/README b/README index be11adf..6acf58c 100644 --- a/README +++ b/README @@ -1,7 +1,7 @@ To activate this script, load it into an interactive ZSH session: - % source history-substring-search.zsh + % source zsh-history-substring-search.zsh -See the "history-substring-search.zsh" file for more information: +See the "zsh-history-substring-search.zsh" file for more information: - % sed -n '2,/^$/s/^#//p' history-substring-search.zsh | more + % sed -n '2,/^$/s/^#//p' zsh-history-substring-search.zsh | more diff --git a/history-substring-search.plugin.zsh b/zsh-history-substring-search.plugin.zsh similarity index 59% rename from history-substring-search.plugin.zsh rename to zsh-history-substring-search.plugin.zsh index 99a5922..3d74f3e 100644 --- a/history-substring-search.plugin.zsh +++ b/zsh-history-substring-search.plugin.zsh @@ -1,6 +1,6 @@ -# This file integrates the history-substring-search script into oh-my-zsh. +# This file integrates the zsh-history-substring-search script into oh-my-zsh. -source "$ZSH/plugins/history-substring-search/history-substring-search.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 diff --git a/history-substring-search.zsh b/zsh-history-substring-search.zsh similarity index 99% rename from history-substring-search.zsh rename to zsh-history-substring-search.zsh index 53f707c..732dfae 100644 --- a/history-substring-search.zsh +++ b/zsh-history-substring-search.zsh @@ -10,13 +10,13 @@ # # 1. Load this script into your interactive ZSH session: # -# % source history-substring-search.zsh +# % source zsh-history-substring-search.zsh # # If you want to use the zsh-syntax-highlighting[6] script along with this # script, then make sure that you load it *before* you load this script: # # % source zsh-syntax-highlighting.zsh -# % source history-substring-search.zsh +# % source zsh-history-substring-search.zsh # # 2. Type any part of any previous command and then: #