mirror of
https://github.com/wez/wezterm.git
synced 2024-12-26 14:54:16 +03:00
e0ea0f46a8
refs: https://github.com/wez/wezterm/pull/2273 refs: https://github.com/wez/wezterm/issues/2253
820 B
820 B
CopyTo(destination)
Copy the selection to the specified clipboard buffer.
Possible values for destination are:
Clipboard
- copy the text to the system clipboard.PrimarySelection
- Copy the text to the primary selection buffer (applicable to X11 and some Wayland systems only)ClipboardAndPrimarySelection
- Copy to both the clipboard and the primary selection.
local wezterm = require 'wezterm'
return {
keys = {
{
key = 'C',
mods = 'CTRL',
action = wezterm.action.CopyTo 'ClipboardAndPrimarySelection',
},
},
}
Since: 20220319-142410-0fcdea07
PrimarySelection
is now also supported on Wayland systems that support primary-selection-unstable-v1 or the older Gtk primary selection protocol.