diff --git a/src/config/Config.zig b/src/config/Config.zig index 6a0818095..c950cf807 100644 --- a/src/config/Config.zig +++ b/src/config/Config.zig @@ -1224,6 +1224,13 @@ keybind: Keybinds = .{}, /// quick terminal, see the documentation for the `toggle_quick_terminal` /// binding action. /// +/// Valid values are: +/// +/// * `top` - Terminal appears at the top of the screen. +/// * `bottom` - Terminal appears at the bottom of the screen. +/// * `left` - Terminal appears at the left of the screen. +/// * `right` - Terminal appears at the right of the screen. +/// /// Changing this configuration requires restarting Ghostty completely. @"quick-terminal-position": QuickTerminalPosition = .top, diff --git a/src/input/Binding.zig b/src/input/Binding.zig index bef2e2209..5df3ae8e4 100644 --- a/src/input/Binding.zig +++ b/src/input/Binding.zig @@ -372,10 +372,11 @@ pub const Action = union(enum) { /// is preserved between appearances, so you can always press the keybinding /// to bring it back up. /// - /// Ths quick terminal has some limitations: + /// The quick terminal has some limitations: /// /// - It is a singleton; only one instance can exist at a time. /// - It does not support tabs. + /// - It does not support fullscreen. /// - It will not be restored when the application is restarted /// (for systems that support window restoration). ///