mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-15 16:26:08 +03:00
xterm audit: slow scroll (DECSCLM)
This commit is contained in:
@ -185,6 +185,7 @@ const entries: []const ModeEntry = &.{
|
|||||||
// DEC
|
// DEC
|
||||||
.{ .name = "cursor_keys", .value = 1 }, // DECCKM
|
.{ .name = "cursor_keys", .value = 1 }, // DECCKM
|
||||||
.{ .name = "132_column", .value = 3 },
|
.{ .name = "132_column", .value = 3 },
|
||||||
|
.{ .name = "slow_scroll", .value = 4 },
|
||||||
.{ .name = "reverse_colors", .value = 5 },
|
.{ .name = "reverse_colors", .value = 5 },
|
||||||
.{ .name = "origin", .value = 6 },
|
.{ .name = "origin", .value = 6 },
|
||||||
.{ .name = "wraparound", .value = 7, .default = true },
|
.{ .name = "wraparound", .value = 7, .default = true },
|
||||||
|
12
website/app/vt/modes/decsclm/page.mdx
Normal file
12
website/app/vt/modes/decsclm/page.mdx
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
import VTMode from "@/components/VTMode";
|
||||||
|
|
||||||
|
# Slow Scroll (DECSCLM)
|
||||||
|
|
||||||
|
<VTMode value={4} />
|
||||||
|
|
||||||
|
Enable slow or smooth scrolling.
|
||||||
|
|
||||||
|
Typically, slow scrolling will scroll line by line when using scroll
|
||||||
|
functions (arrow keys, scrollbar, etc.). With this disabling, scrolling
|
||||||
|
jumps by more lines. This is purely up to the terminal to implement how it
|
||||||
|
sees fit.
|
Reference in New Issue
Block a user