Blame view

plugins/copyfile/copyfile.plugin.zsh 148 Bytes
ed37aae5b   mj   Squashed 'repos/r...
1
2
3
  # Copies the contents of a given file to the system or X Windows clipboard
  #
  # copyfile <file>
093a6c34b   mj   Squashed 'repos/r...
4
  function copyfile {
ed37aae5b   mj   Squashed 'repos/r...
5
6
    emulate -L zsh
    clipcopy $1
093a6c34b   mj   Squashed 'repos/r...
7
  }