Documentation
¶
Overview ¶
Package clipboard read/write on clipboard
Example ¶
package main
import (
"fmt"
"github.com/atotto/clipboard"
)
func main() {
clipboard.WriteAll("日本語")
text, _ := clipboard.ReadAll()
fmt.Println(text)
}
Output: 日本語
Index ¶
Examples ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var (
Primary bool
)
View Source
var Unsupported bool
Unsupported might be set true during clipboard init, to help callers decide whether or not to offer clipboard options.
Functions ¶
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.