summaryrefslogtreecommitdiff
path: root/plugins/copydir/copydir.plugin.zsh
blob: c451062406a0a3fab62728e673c94f6cab5b396c (plain)
1
2
3
4
5
# Copies the pathname of the current directory to the system or X Windows clipboard
function copydir {
  emulate -L zsh
  print -n $PWD | clipcopy
}