mirror of
https://github.com/wez/wezterm.git
synced 2024-12-04 07:06:59 +03:00
e0ea0f46a8
refs: https://github.com/wez/wezterm/pull/2273 refs: https://github.com/wez/wezterm/issues/2253
448 B
448 B
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.
local wezterm = require 'wezterm'
local act = wezterm.action
return {
keys = {
{ key = 'UpArrow', mods = 'SHIFT', action = act.ScrollByLine(-1) },
{ key = 'DownArrow', mods = 'SHIFT', action = act.ScrollByLine(1) },
},
}