mirror of
https://github.com/wez/wezterm.git
synced 2024-11-23 15:04:36 +03:00
1df1f166ca
Allows the following assignment actions; I was just over-using z for no real reason, I'm not suggesting that these are good assignments. ``` -- move the cursor backwards to the start of the current zone, or -- to the prior zone if already at the start { key = 'z', mods = 'NONE', action = act.CopyMode 'MoveBackwardSemanticZone' }, -- move the cursor forwards to the start of the next zone { key = 'Z', mods = 'NONE', action = act.CopyMode 'MoveForwardSemanticZone' }, -- start selecting by zone: both the start point and the cursor -- position will be expanded to the containing zone and the union -- of those two will be used for the selection { key = 'z', mods = 'CTRL', action = act.CopyMode { SetSelectionMode = 'SemanticZone' }, }, -- like MoveBackwardSemanticZone by only considers zones of the -- specified type { key = 'z', mods = 'ALT', action = act.CopyMode { MoveBackwardZoneOfType ='Output' }}, -- like MoveForwardSemanticZone by only considers zones of the -- specified type { key = 'Z', mods = 'ALT', action = act.CopyMode { MoveForwardZoneOfType ='Output' }}, ``` refs: https://github.com/wez/wezterm/issues/2346 |
||
---|---|---|
.. | ||
src | ||
build.rs | ||
Cargo.toml |