mirror of
https://github.com/wez/wezterm.git
synced 2024-12-26 23:04:49 +03:00
16 lines
216 B
Markdown
16 lines
216 B
Markdown
# DecreaseFontSize
|
|
|
|
Decreases the font size of the current window by 10%
|
|
|
|
```lua
|
|
local wezterm = require 'wezterm'
|
|
|
|
return {
|
|
keys = {
|
|
{key="-", mods="CTRL", action=wezterm.action.DecreaseFontSize},
|
|
}
|
|
}
|
|
```
|
|
|
|
|