EditPattern

On this page
  1. CopyMode EditPattern

CopyMode EditPattern#

Put CopyMode/SearchMode into editing mode: keyboard input will be directed to the search pattern editor.

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

return {
  key_tables = {
    search_mode = {
      -- This action is not bound by default in wakterm
      { key = 'e', mods = 'CTRL', action = act.CopyMode 'EditPattern' },
    },
  },
}

See also AcceptPattern.

Edit this page