1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2024-06-29 12:37:25 +00:00
prezto/plugins/history-substring-search/init.zsh

14 lines
349 B
Bash
Raw Normal View History

# This file integrates the history-substring-search script into oh-my-zsh.
source "${0:h}/history-substring-search.zsh"
if check-bool "$CASE_SENSITIVE"; then
unset HISTORY_SUBSTRING_SEARCH_GLOBBING_FLAGS
fi
if ! check-bool "$COLOR"; then
unset HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_FOUND
unset HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_NOT_FOUND
fi
2011-08-31 03:16:15 +00:00