summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorMarc Cornellà <marc.cornella@live.com>2015-12-01 14:05:18 +0100
committerMarc Cornellà <marc.cornella@live.com>2015-12-01 14:05:18 +0100
commiteca912e51ac379691e3d5904808271aba7de8e51 (patch)
treebfc747eedd3ae616611ab9ed90b03af9a9ae6e8e /lib
parent103eb32721a62062363dfaec562e882ab52d21df (diff)
downloadzsh-eca912e51ac379691e3d5904808271aba7de8e51.tar.gz
zsh-eca912e51ac379691e3d5904808271aba7de8e51.tar.bz2
zsh-eca912e51ac379691e3d5904808271aba7de8e51.zip
Quote all variables in if statements
Diffstat (limited to 'lib')
-rw-r--r--lib/termsupport.zsh11
1 files changed, 6 insertions, 5 deletions
diff --git a/lib/termsupport.zsh b/lib/termsupport.zsh
index 178e6351b..6271725a2 100644
--- a/lib/termsupport.zsh
+++ b/lib/termsupport.zsh
@@ -36,14 +36,15 @@ function title {
ZSH_THEME_TERM_TAB_TITLE_IDLE="%15<..<%~%<<" #15 char left truncated PWD
ZSH_THEME_TERM_TITLE_IDLE="%n@%m: %~"
# Avoid duplication of directory in terminals with independent dir display
-if [[ $TERM_PROGRAM == Apple_Terminal ]]; then
+if [[ "$TERM_PROGRAM" == Apple_Terminal ]]; then
ZSH_THEME_TERM_TITLE_IDLE="%n@%m"
fi
# Runs before showing the prompt
function omz_termsupport_precmd {
emulate -L zsh
- if [[ $DISABLE_AUTO_TITLE == true ]]; then
+
+ if [[ "$DISABLE_AUTO_TITLE" == true ]]; then
return
fi
@@ -53,12 +54,12 @@ function omz_termsupport_precmd {
# Runs before executing the command
function omz_termsupport_preexec {
emulate -L zsh
- if [[ $DISABLE_AUTO_TITLE == true ]]; then
+ setopt extended_glob
+
+ if [[ "$DISABLE_AUTO_TITLE" == true ]]; then
return
fi
- setopt extended_glob
-
# cmd name only, or if this is sudo or ssh, the next cmd
local CMD=${1[(wr)^(*=*|sudo|ssh|mosh|rake|-*)]:gs/%/%%}
local LINE="${2:gs/%/%%}"