mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-22 19:56:08 +03:00
Merge pull request #1763 from mitchellh/vsync
config: default window-vsync to true
This commit is contained in:
@ -624,13 +624,15 @@ keybind: Keybinds = .{},
|
|||||||
/// latency. If false, this will maximize redraw frequency but may cause tearing,
|
/// latency. If false, this will maximize redraw frequency but may cause tearing,
|
||||||
/// and under heavy load may use more CPU and power.
|
/// and under heavy load may use more CPU and power.
|
||||||
///
|
///
|
||||||
/// This defaults to false because out of the box a lot of users prefer to
|
/// This defaults to true because out-of-sync rendering on macOS can
|
||||||
/// feel like the terminal is as responsive as possible.
|
/// cause kernel panics (macOS 14.4+) and performance issues for external
|
||||||
|
/// displays over some hardware such as DisplayLink. If you want to maximize
|
||||||
|
/// input latency, set this to false with the known aforementioned risks.
|
||||||
///
|
///
|
||||||
/// Changing this value at runtime will only affect new terminals.
|
/// Changing this value at runtime will only affect new terminals.
|
||||||
///
|
///
|
||||||
/// This setting is only supported currently on macOS.
|
/// This setting is only supported currently on macOS.
|
||||||
@"window-vsync": bool = false,
|
@"window-vsync": bool = true,
|
||||||
|
|
||||||
/// If true, new windows and tabs will inherit the working directory of the
|
/// If true, new windows and tabs will inherit the working directory of the
|
||||||
/// previously focused window. If no window was previously focused, the default
|
/// previously focused window. If no window was previously focused, the default
|
||||||
|
Reference in New Issue
Block a user