CopyMode 'MoveToViewportTop'
Since: 20220624-141144-bd1b7c5d
Moves the CopyMode cursor position to the top of the viewport.
local wezterm = require 'wezterm'
local act = wezterm.action
return {
key_tables = {
copy_mode = {
{
key = 'H',
mods = 'NONE',
action = act.CopyMode 'MoveToViewportTop',
},
},
},
}