1
1
mirror of https://github.com/wez/wezterm.git synced 2024-12-29 16:42:13 +03:00
wezterm/docs/config/lua/keyassignment/ScrollByLine.md

19 lines
427 B
Markdown
Raw Normal View History

# ScrollByLine
*Since: 20210314-114017-04b7cedd*
Adjusts the scroll position by the number of lines specified by the argument.
Negative values scroll upwards, while positive values scroll downwards.
```lua
local wezterm = require 'wezterm';
return {
keys = {
{key="UpArrow", mods="SHIFT", action=wezterm.action{ScrollByLine=-1}},
{key="DownArrow", mods="SHIFT", action=wezterm.action{ScrollByLine=1}},
}
}
```