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