summaryrefslogtreecommitdiff
path: root/plugins/copyfile/copyfile.plugin.zsh
blob: f4eca5acf82c6b20a5aabaeed81add2117e636c3 (plain)
1
2
3
4
5
6
7
# Copies the contents of a given file to the system or X Windows clipboard
#
# copyfile <file>
function copyfile {
  emulate -L zsh
  clipcopy $1
}