MoveForwardSemanticZone

On this page
  1. CopyMode MoveForwardSemanticZone

CopyMode MoveForwardSemanticZone#

Moves the CopyMode cursor position one semantic zone to the right.

See Shell Integration for more information about semantic zones.

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

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