copydir.plugin.zsh 149 Bytes
Newer Older
1
# Copies the pathname of the current directory to the system or X Windows clipboard
2
function copydir {
3
4
  emulate -L zsh
  print -n $PWD | clipcopy
Andrew Janke's avatar
Andrew Janke committed
5
}