CopyMode ClearSelectionMode
¶
Since: Version 20220807-113146-c2fee766
The functionality described in this section requires version 20220807-113146-c2fee766 of wezterm, or a more recent version.
Clears the current CopyMode selection mode without leaving CopyMode.
local wezterm = require 'wezterm'
local act = wezterm.action
return {
key_tables = {
copy_mode = {
{
key = 'y',
mods = 'NONE',
action = act.Multiple {
act.CopyTo 'PrimarySelection',
act.ClearSelection,
-- clear the selection mode, but remain in copy mode
act.CopyMode { 'ClearSelectionMode' },
},
},
},
},
}
See also: SetSelectionMode.