diff options
author | MoonFruit <dkmoonfruit@gmail.com> | 2015-08-28 10:46:45 +0800 |
---|---|---|
committer | MoonFruit <dkmoonfruit@gmail.com> | 2015-08-28 10:46:45 +0800 |
commit | 0a2c31fb60ab9870f3a2090eba10d0bdbcc9a3b9 (patch) | |
tree | fa71a4c12c7c66debb46acfe5f5297cb8ddccc57 | |
parent | 192de6bcffb0294e19f4203f6f7dc1a7f3e427be (diff) | |
download | zsh-0a2c31fb60ab9870f3a2090eba10d0bdbcc9a3b9.tar.gz zsh-0a2c31fb60ab9870f3a2090eba10d0bdbcc9a3b9.tar.bz2 zsh-0a2c31fb60ab9870f3a2090eba10d0bdbcc9a3b9.zip |
Remove redundant semicolon
Remove redundant semicolon to make tab() works better in ITerm 2.
-rw-r--r-- | plugins/osx/osx.plugin.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/osx/osx.plugin.zsh b/plugins/osx/osx.plugin.zsh index a6e3a83e6..390960fdc 100644 --- a/plugins/osx/osx.plugin.zsh +++ b/plugins/osx/osx.plugin.zsh @@ -6,7 +6,7 @@ # ------------------------------------------------------------------------------ function tab() { - local command="cd \\\"$PWD\\\"; clear; " + local command="cd \\\"$PWD\\\"; clear" (( $# > 0 )) && command="${command}; $*" the_app=$( |