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:
parent
521b7fb7ef
commit
fe24169939
@ -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
|
||||
|
@ -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',
|
||||
},
|
||||
}
|
||||
```
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user