MoveToStartOfLineContent

On this page
  1. CopyMode MoveToStartOfLineContent

CopyMode MoveToStartOfLineContent#

Moves the CopyMode cursor position to the first 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 'MoveToStartOfLineContent',
      },
    },
  },
}
Edit this page