Back to Wezterm

CopyMode `MoveToViewportBottom`

docs/config/lua/keyassignment/CopyMode/MoveToViewportBottom.md

latest385 B
Original Source

CopyMode MoveToViewportBottom

{{since('20220624-141144-bd1b7c5d')}}

Moves the CopyMode cursor position to the bottom of the viewport.

lua
local wezterm = require 'wezterm'
local act = wezterm.action

return {
  key_tables = {
    copy_mode = {
      {
        key = 'L',
        mods = 'NONE',
        action = act.CopyMode 'MoveToViewportBottom',
      },
    },
  },
}