gomuks/vendor/github.com/zyedidia/clipboard
2018-09-05 10:55:48 +03:00
..
.travis.yml Switch to dep 2018-04-22 21:25:51 +03:00
clipboard_darwin.go Switch to dep 2018-04-22 21:25:51 +03:00
clipboard_unix.go Switch to dep 2018-04-22 21:25:51 +03:00
clipboard_windows.go Switch to dep 2018-04-22 21:25:51 +03:00
clipboard.go Switch to dep 2018-04-22 21:25:51 +03:00
LICENSE Update to latest gomatrix. Things are broken 2018-09-05 10:55:48 +03:00
README.md Update to latest gomatrix. Things are broken 2018-09-05 10:55:48 +03:00

This is a fork of atotto/clipboard

This fork is used for zyedidia/micro and has some modifications, namely: support for the primary clipboard on linux and support for an internal clipboard if the system clipboard is not available.

Build Status Build Status

GoDoc

Clipboard for Go

Provide copying and pasting to the Clipboard for Go.

Download shell commands at https://drone.io/github.com/atotto/clipboard/files

Build:

$ go get github.com/atotto/clipboard

Platforms:

  • OSX
  • Windows 7 (probably work on other Windows)
  • Linux, Unix (requires 'xclip' or 'xsel' command to be installed)

Document:

Notes:

  • Text string only
  • UTF-8 text encoding only (no conversion)

TODO:

  • Clipboard watcher(?)

Commands:

paste shell command:

$ go get github.com/atotto/clipboard/cmd/gopaste
$ # example:
$ gopaste > document.txt

copy shell command:

$ go get github.com/atotto/clipboard/cmd/gocopy
$ # example:
$ cat document.txt | gocopy