MoveToEndOfLineContent
On this page
CopyMode MoveToEndOfLineContent#
Moves the CopyMode cursor position to the last non-space cell in the current line.
local wakterm = require 'wakterm'
local act = wakterm.action
return {
key_tables = {
copy_mode = {
{
key = '$',
mods = 'NONE',
action = act.CopyMode 'MoveToEndOfLineContent',
},
},
},
}