wezterm: Add timeout to scrolling mode
This commit is contained in:
parent
e224f7f20a
commit
f975e5885e
1 changed files with 3 additions and 2 deletions
|
@ -67,14 +67,15 @@ local keys = {
|
|||
action = act.ActivateKeyTable {
|
||||
name = 'scroll_mode',
|
||||
one_shot = false,
|
||||
replace_current = true
|
||||
replace_current = true,
|
||||
timeout_milliseconds = 15000,
|
||||
}
|
||||
}, { key = 'e', mods = 'LEADER', action = act.EmitEvent 'edit-scrollback' }, {
|
||||
key = 'l',
|
||||
mods = 'LEADER',
|
||||
action = act.EmitEvent 'ActivatePaneDirection-Right'
|
||||
},
|
||||
{ key = 'a', mods = 'CTRL|ALT', action = act.EmitEvent 'toggle-leader'}
|
||||
{ key = 'a', mods = 'CTRL|ALT', action = act.EmitEvent 'toggle-leader' }
|
||||
|
||||
}
|
||||
-- Leader + number to activate that tab
|
||||
|
|
Loading…
Reference in a new issue