Browse Source

Merge pull request #1889 from jerolimov/patch-1

osx-plugin: Do not clear new tab when calling it with an argument.
Robby Russell 12 years ago
parent
commit
32b4755b8a
1 changed files with 2 additions and 2 deletions
  1. 2 2
      plugins/osx/osx.plugin.zsh

+ 2 - 2
plugins/osx/osx.plugin.zsh

@@ -6,7 +6,7 @@
 # ------------------------------------------------------------------------------
 # ------------------------------------------------------------------------------
 
 
 function tab() {
 function tab() {
-  local command="cd \\\"$PWD\\\""
+  local command="cd \\\"$PWD\\\"; clear; "
   (( $# > 0 )) && command="${command}; $*"
   (( $# > 0 )) && command="${command}; $*"
 
 
   the_app=$(
   the_app=$(
@@ -34,7 +34,7 @@ EOF
           launch session "Default Session"
           launch session "Default Session"
           set current_session to current session
           set current_session to current session
           tell current_session
           tell current_session
-            write text "${command}; clear;"
+            write text "${command}"
           end tell
           end tell
         end tell
         end tell
       end tell
       end tell