From c37517624cb225ecbc5ea8b2fe2d2f12b828a9e8 Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Fri, 12 Aug 2011 17:55:09 +0200 Subject: [PATCH] zsh/rc: Always use "yes" to enable zstyle settings. --- zsh/rc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zsh/rc b/zsh/rc index 236374b..4626513 100644 --- a/zsh/rc +++ b/zsh/rc @@ -184,7 +184,7 @@ if [[ $ZSH_VERSION == (4.3.<9->|4.<4->*|<5->*) || zstyle ':vcs_info:*' enable git hg # Check the repository for changes so they can be used in %u/%c (see # below). This comes with a speed penalty for bigger repositories. - zstyle ':vcs_info:*' check-for-changes true + zstyle ':vcs_info:*' check-for-changes yes # Set style of vcs_info display. The current branch (green) and VCS (blue) # is displayed. If there is an special action going on (merge, rebase) @@ -463,7 +463,7 @@ zmodload zsh/complist autoload -Uz compinit && compinit -d ~/.zsh/cache/zcompdump # Use cache to speed up some slow completions (dpkg, perl modules, etc.). -zstyle ':completion:*' use-cache on +zstyle ':completion:*' use-cache yes zstyle ':completion:*' cache-path ~/.zsh/cache # Let the completion system handle all completions, including expanding of -- 2.44.1