CopyMode EditPattern
¶
Since: Version 20220624-141144-bd1b7c5d
The functionality described in this section requires version 20220624-141144-bd1b7c5d of wezterm, or a more recent version.
Put CopyMode/SearchMode into editing mode: keyboard input will be directed to the search pattern editor.
local wezterm = require 'wezterm'
local act = wezterm.action
return {
key_tables = {
search_mode = {
-- This action is not bound by default in wezterm
{ key = 'e', mods = 'CTRL', action = act.CopyMode 'EditPattern' },
},
},
}
See also AcceptPattern.