ba9900a488
Conflicts: .gitignore lib/aliases.zsh lib/completion.zsh lib/functions.zsh lib/git.zsh lib/key-bindings.zsh lib/misc.zsh lib/spectrum.zsh plugins/git/git.plugin.zsh plugins/osx/_man-preview plugins/osx/osx.plugin.zsh plugins/svn/svn.plugin.zsh templates/zshrc.zsh-template themes/lukerandall.zsh-theme themes/philips.zsh-theme tools/upgrade.sh
13 lines
333 B
Bash
13 lines
333 B
Bash
# This file integrates the 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
|