MoveRight
On this page
CopyMode MoveRight#
Moves the CopyMode cursor position one cell to the right.
local wakterm = require 'wakterm'
local act = wakterm.action
return {
key_tables = {
copy_mode = {
{
key = 'RightArrow',
mods = 'NONE',
action = act.CopyMode 'MoveRight',
},
},
},
}