diff options
author | Marc Cornellà <marc.cornella@live.com> | 2013-12-14 02:13:18 +0100 |
---|---|---|
committer | Marc Cornellà <marc.cornella@live.com> | 2014-02-21 22:16:12 +0100 |
commit | b73ced397fc74618d92f748e2744e65f901b368f (patch) | |
tree | e7e1fb0b283f7c27c88eecf5952b814c864e3b8d | |
parent | b0fbe0d11ac60074b4fdc20e332bc2db3e0c0066 (diff) | |
download | zsh-b73ced397fc74618d92f748e2744e65f901b368f.tar.gz zsh-b73ced397fc74618d92f748e2744e65f901b368f.tar.bz2 zsh-b73ced397fc74618d92f748e2744e65f901b368f.zip |
Use single quotes also in $LINE definiton
-rw-r--r-- | lib/termsupport.zsh | 2 |
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%<<' } |