Add clipcopy() and clippaste() generic cross-platform CLI clipboard functions.

Change copydir, copyfile, and coffee plugins to use them, instead of the Mac-only `pbcopy` command.
This commit is contained in:
Andrew Janke 2015-08-17 22:53:45 -04:00
commit 5c8b0cc0c1
4 changed files with 80 additions and 9 deletions

View file

@ -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
emulate -L zsh
print -n $PWD | clipcopy
}