1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-23 15:04:36 +03:00
This commit is contained in:
Wez Furlong 2023-01-19 20:13:55 -07:00
parent 6164b871d5
commit 523dafe757
No known key found for this signature in database
GPG Key ID: 7A7F66A31EC9B387
3 changed files with 32 additions and 1 deletions

View File

@ -52,6 +52,10 @@ As features stabilize some brief notes about them will accumulate here.
[ActivateWindow](config/lua/keyassignment/ActivateWindow.md),
[ActivateWindowRelative](config/lua/keyassignment/ActivateWindowRelative.md),
[ActivateWindowRelativeNoWrap](config/lua/keyassignment/ActivateWindowRelativeNoWrap.md)
* Copy Mode: added
[MoveForwardWordEnd](config/lua/keyassignment/CopyMode/MoveForwardWordEnd.md),
thanks to [@GZLiew](https://github.com/GZLiew)!
[#2908](https://github.com/wez/wezterm/pull/2908)
#### Fixed
* X11: hanging or killing the IME could hang wezterm

View File

@ -18,7 +18,11 @@ local act = wezterm.action
return {
keys = {
{ key = 'r', mods = 'ALT', action = act.ActivateWindowRelativeNoWrap(1) },
{
key = 'r',
mods = 'ALT',
action = act.ActivateWindowRelativeNoWrap(1),
},
{
key = 'e',
mods = 'ALT',

View File

@ -0,0 +1,23 @@
# CopyMode 'MoveForwardWord'
*Since: nightly builds only*
Moves the CopyMode cursor position forward to the end of word.
```lua
local wezterm = require 'wezterm'
local act = wezterm.action
return {
key_tables = {
copy_mode = {
{
key = 'e',
mods = 'NONE',
action = act.CopyMode 'MoveForwardWordEnd',
},
},
},
}
```