diff options
author | Robby Russell <robby@planetargon.com> | 2015-10-09 07:15:53 -0700 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2015-10-09 07:15:53 -0700 |
commit | dc06e96e9cf52354ac76e9795cc85d528b2d5018 (patch) | |
tree | 6cdc6ba4794dffe2cb2189d77cee88ce784e8eb5 /plugins/copydir | |
parent | b1173d4b30930cdbd69f8c0c029b94f756fe9be7 (diff) | |
parent | b6d78df62c540245f67ffc900d0b1a17a6dfb77e (diff) | |
download | zsh-dc06e96e9cf52354ac76e9795cc85d528b2d5018.tar.gz zsh-dc06e96e9cf52354ac76e9795cc85d528b2d5018.tar.bz2 zsh-dc06e96e9cf52354ac76e9795cc85d528b2d5018.zip |
Merge pull request #4254 from apjanke/copyfile-portability
Cross-platform clipboard clipcopy() and clippaste()
Diffstat (limited to 'plugins/copydir')
-rw-r--r-- | plugins/copydir/copydir.plugin.zsh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/plugins/copydir/copydir.plugin.zsh b/plugins/copydir/copydir.plugin.zsh index 37bb5e086..c45106240 100644 --- a/plugins/copydir/copydir.plugin.zsh +++ b/plugins/copydir/copydir.plugin.zsh @@ -1,3 +1,5 @@ +# Copies the pathname of the current directory to the system or X Windows clipboard function copydir { - pwd | tr -d "\r\n" | pbcopy -}
\ No newline at end of file + emulate -L zsh + print -n $PWD | clipcopy +} |