Blame view

lib/clipboard.zsh 2.13 KB
ed37aae5b   mj   Squashed 'repos/r...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
  # System clipboard integration
  #
  # This file has support for doing system clipboard copy and paste operations
  # from the command line in a generic cross-platform fashion.
  #
  # On OS X and Windows, the main system clipboard or "pasteboard" is used. On other
  # Unix-like OSes, this considers the X Windows CLIPBOARD selection to be the
  # "system clipboard", and the X Windows `xclip` command must be installed.
  
  # clipcopy - Copy data to clipboard
  #
  # Usage:
  #
  #  <command> | clipcopy    - copies stdin to clipboard
  #
  #  clipcopy <file>         - copies a file's contents to clipboard
  #
  function clipcopy() {
    emulate -L zsh
    local file=$1
    if [[ $OSTYPE == darwin* ]]; then
      if [[ -z $file ]]; then
        pbcopy
      else
        cat $file | pbcopy
      fi
    elif [[ $OSTYPE == cygwin* ]]; then
      if [[ -z $file ]]; then
        cat > /dev/clipboard
      else
        cat $file > /dev/clipboard
      fi
    else
      if which xclip &>/dev/null; then
        if [[ -z $file ]]; then
          xclip -in -selection clipboard
        else
          xclip -in -selection clipboard $file
        fi
      elif which xsel &>/dev/null; then
        if [[ -z $file ]]; then
          xsel --clipboard --input 
        else
          cat "$file" | xsel --clipboard --input
        fi
      else
        print "clipcopy: Platform $OSTYPE not supported or xclip/xsel not installed" >&2
        return 1
      fi
    fi
  }
  
  # clippaste - "Paste" data from clipboard to stdout
  #
  # Usage:
  #
  #   clippaste   - writes clipboard's contents to stdout
  #
  #   clippaste | <command>    - pastes contents and pipes it to another process
  #
  #   clippaste > <file>      - paste contents to a file
  #
  # Examples:
  #
  #   # Pipe to another process
  #   clippaste | grep foo
  #
  #   # Paste to a file
  #   clippaste > file.txt
  function clippaste() {
    emulate -L zsh
    if [[ $OSTYPE == darwin* ]]; then
      pbpaste
    elif [[ $OSTYPE == cygwin* ]]; then
      cat /dev/clipboard
    else
      if which xclip &>/dev/null; then
        xclip -out -selection clipboard
      elif which xsel &>/dev/null; then
        xsel --clipboard --output
      else
        print "clipcopy: Platform $OSTYPE not supported or xclip/xsel not installed" >&2
        return 1
      fi
    fi
  }