diff options
author | Robby Russell <robby@planetargon.com> | 2013-03-26 21:48:36 -0700 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2013-03-26 21:48:36 -0700 |
commit | 74859240be6d1beaa02f7aa48a221626d8bda6f2 (patch) | |
tree | 421a516ee9601f263203099403b2b11b9e9f8f41 /plugins/osx/osx.plugin.zsh | |
parent | 650bace5c52897e9349d9401ebb8c862f3de7ae8 (diff) | |
parent | 49860bd61ff61d284f3b356bec0042cace98a686 (diff) | |
download | zsh-74859240be6d1beaa02f7aa48a221626d8bda6f2.tar.gz zsh-74859240be6d1beaa02f7aa48a221626d8bda6f2.tar.bz2 zsh-74859240be6d1beaa02f7aa48a221626d8bda6f2.zip |
Merge pull request #1650 from ishtu/master
add vncviewer function (using "open" functionality)
Diffstat (limited to 'plugins/osx/osx.plugin.zsh')
-rw-r--r-- | plugins/osx/osx.plugin.zsh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/osx/osx.plugin.zsh b/plugins/osx/osx.plugin.zsh index f278d4f8d..51cd7c143 100644 --- a/plugins/osx/osx.plugin.zsh +++ b/plugins/osx/osx.plugin.zsh @@ -154,3 +154,6 @@ function trash() { IFS=$temp_ifs } +function vncviewer() { + open vnc://$@ +} |