0 branches
Tree
Top files
Clone with HTTPS:
dummy
docs,ci: check more vlib modules in the report-missing-dots-in-doc-comments job (#24928)
last Jul 19
1.78 KB
x11
clipboard: clipboard not working on windows and doesn't use global on linux (fixes #11338)
last Apr 14
13.93 KB
README.md
doc: update trim_doc_node_description, make module readmes more uniform (#20792)
2 years ago
277 bytes
clipboard_android.c.v
clipboard: add doc strings to all implementations (#13932)
4 years ago
491 bytes
clipboard_darwin.c.v
docs,ci: check more vlib modules in the report-missing-dots-in-doc-comments job (#24928)
last Jul 19
2.12 KB
clipboard_default.c.v
clipboard: add doc strings to all implementations (#13932)
4 years ago
483 bytes
clipboard_solaris.c.v
clipboard: add doc strings to all implementations (#13932)
4 years ago
491 bytes
Description
clipboard provides access to the platform's clipboard mechanism.
You can use it to read from the system clipboard, and write to it
from your applications.
Examples
import clipboard
fn main() {
mut c := clipboard.new()
println(c.get_text())
}