Browse Source

[Fix #426] Correct syntax error in variable assignment

master
Sorin Ionescu 11 years ago
parent
commit
23f62774f9
  1. 3
      modules/history-substring-search/init.zsh

3
modules/history-substring-search/init.zsh

@ -29,8 +29,7 @@ zstyle -s ':prezto:module:history-substring-search' globbing-flags \ @@ -29,8 +29,7 @@ zstyle -s ':prezto:module:history-substring-search' globbing-flags \
|| HISTORY_SUBSTRING_SEARCH_GLOBBING_FLAGS='i'
if zstyle -t ':prezto:module:history-substring-search' case-sensitive; then
HISTORY_SUBSTRING_SEARCH_GLOBBING_FLAGS=\
"${HISTORY_SUBSTRING_SEARCH_GLOBBING_FLAGS//i}"
HISTORY_SUBSTRING_SEARCH_GLOBBING_FLAGS="${HISTORY_SUBSTRING_SEARCH_GLOBBING_FLAGS//i}"
fi
if ! zstyle -t ':prezto:module:history-substring-search' color; then

Loading…
Cancel
Save