MoveToSelectionOtherEndHoriz

On this page
  1. CopyMode MoveToSelectionOtherEndHoriz

CopyMode MoveToSelectionOtherEndHoriz#

Moves the CopyMode cursor position to the other horizontal end of the selection without changing the y-coordinate; if the cursor at the left end and the starting point at the right end, then the cursor and starting point are swapped, with the cursor now positioned at the right end.

local wakterm = require 'wakterm'
local act = wakterm.action

return {
  key_tables = {
    copy_mode = {
      {
        key = 'O',
        mods = 'NONE',
        action = act.CopyMode 'MoveToSelectionOtherEndHoriz',
      },
    },
  },
}
Edit this page