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
715 B
715 B
PastePrimarySelection
X11: Paste the Primary Selection to the current tab. On other systems, this behaves identically to Paste.
since: 20210203-095643-70a364eb
This action is considered to be deprecated and will be removed in a future release; please use PasteFrom instead.
Example
local wezterm = require 'wezterm'
local act = wezterm.action
return {
keys = {
{ key = 'v', mods = 'SHIFT|CTRL', action = act.PastePrimarySelection },
},
-- Middle mouse button pastes the primary selection.
mouse_bindings = {
{
event = { Up = { streak = 1, button = 'Middle' } },
mods = 'NONE',
action = act.PastePrimarySelection,
},
},
}