mirror of
https://github.com/wez/wezterm.git
synced 2024-12-29 16:42:13 +03:00
21 lines
661 B
Markdown
21 lines
661 B
Markdown
# ClearScrollback
|
|
|
|
Clears the lines that have scrolled off the top of the viewport, resetting
|
|
the scrollbar thumb to the full height of the window.
|
|
|
|
*since: 20210203-095643-70a364eb*
|
|
|
|
Added a parameter that allows additionally clear the viewport:
|
|
|
|
```lua
|
|
return {
|
|
keys = {
|
|
-- Clears only the scrollback and leaves the viewport intact.
|
|
-- This is the default behavior.
|
|
{key="K", mods="CTRL|SHIFT", action=wezterm.action{ClearScrollback="ScrollbackOnly"}}
|
|
-- Clears the scrollback and viewport leaving the prompt line the new first line.
|
|
{key="K", mods="CTRL|SHIFT", action=wezterm.action{ClearScrollback="ScrollbackAndViewport"}}
|
|
}
|
|
}
|
|
```
|