ExtendSelectionToMouseCursor

On this page
  1. ExtendSelectionToMouseCursor

ExtendSelectionToMouseCursor#

Extends the current text selection to the current mouse cursor position. The mode argument can be one of Cell, Word or Line to control the scope of the selection.

The mode argument can also be "Block" to enable a rectangular block selection.

config.mouse_bindings = {
  {
    event = { Up = { streak = 1, button = 'Left' } },
    mods = 'SHIFT',
    action = wakterm.action.ExtendSelectionToMouseCursor 'Word',
  },
}
Edit this page