1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-23 15:04:36 +03:00

docs: changelog for #4567

This commit is contained in:
Wez Furlong 2024-01-21 14:08:17 -07:00
parent 521b7fb7ef
commit fe24169939
No known key found for this signature in database
GPG Key ID: 7A7F66A31EC9B387
2 changed files with 20 additions and 15 deletions

View File

@ -107,6 +107,11 @@ As features stabilize some brief notes about them will accumulate here.
* [command_palette_rows](config/lua/config/command_palette_rows.md) to
control how many rows are displayed in the command palette. Thanks to
@exastone! #4595
* [ToggleAlwaysOnTop](config/lua/keyassignment/ToggleAlwaysOnTop.md),
[ToggleAlwaysOnBottom](config/lua/keyassignment/ToggleAlwaysOnBottom.md) and
[SetWindowLevel](config/lua/keyassignment/SetWindowLevel.md) key assignments
for manipulating the window level. These are currently implemented only
on macOS. Thanks to @rawnly! #4567
#### Fixed
* Command Palette was using now-invalid Nerd Font 2.0 symbols for macOS

View File

@ -12,21 +12,21 @@ Accepted values:
```lua
config.keys = {
{
key = '[',
mods = 'CMD',
action = wezterm.action.SetWindowLevel("AlwaysOnBottom")
},
{
key = '0',
mods = 'CMD|SHIFT',
action = wezterm.action.SetWindowLevel("Normal")
},
{
key = ']',
mods = 'CMD',
action = wezterm.action.SetWindowLevel("AlwaysOnTop")
},
{
key = '[',
mods = 'CMD',
action = wezterm.action.SetWindowLevel 'AlwaysOnBottom',
},
{
key = '0',
mods = 'CMD|SHIFT',
action = wezterm.action.SetWindowLevel 'Normal',
},
{
key = ']',
mods = 'CMD',
action = wezterm.action.SetWindowLevel 'AlwaysOnTop',
},
}
```