Blame view
plugins/copydir/copydir.plugin.zsh
149 Bytes
|
ed37aae5b
|
1 |
# Copies the pathname of the current directory to the system or X Windows clipboard |
|
093a6c34b
|
2 |
function copydir {
|
|
ed37aae5b
|
3 4 5 |
emulate -L zsh
print -n $PWD | clipcopy
}
|