mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 08:20:09 +00:00
5c8b0cc0c1
Change copydir, copyfile, and coffee plugins to use them, instead of the Mac-only `pbcopy` command.
5 lines
No EOL
148 B
Bash
5 lines
No EOL
148 B
Bash
# Copies the pathname of the current directory to the system or X Windows clipboard
|
|
function copydir {
|
|
emulate -L zsh
|
|
print -n $PWD | clipcopy
|
|
} |