summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc Cornellà <marc.cornella@live.com>2013-12-14 02:13:18 +0100
committerMarc Cornellà <marc.cornella@live.com>2014-02-21 22:16:12 +0100
commitb73ced397fc74618d92f748e2744e65f901b368f (patch)
treee7e1fb0b283f7c27c88eecf5952b814c864e3b8d
parentb0fbe0d11ac60074b4fdc20e332bc2db3e0c0066 (diff)
downloadzsh-b73ced397fc74618d92f748e2744e65f901b368f.tar.gz
zsh-b73ced397fc74618d92f748e2744e65f901b368f.tar.bz2
zsh-b73ced397fc74618d92f748e2744e65f901b368f.zip
Use single quotes also in $LINE definiton
-rw-r--r--lib/termsupport.zsh2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/termsupport.zsh b/lib/termsupport.zsh
index 6eba8f69a..d3d8c967f 100644
--- a/lib/termsupport.zsh
+++ b/lib/termsupport.zsh
@@ -27,7 +27,7 @@ function omz_termsupport_preexec {
emulate -L zsh
setopt extended_glob
local CMD=${1[(wr)^(*=*|sudo|ssh|rake|-*)]} #cmd name only, or if this is sudo or ssh, the next cmd
- local LINE="${2}"
+ local LINE='${2}'
title "$CMD" '%100>...>$LINE%<<'
}