input: note fullscreen isn't supported by quick terminal

This commit is contained in:
Mitchell Hashimoto
2024-09-28 18:49:52 -07:00
parent 61dd395251
commit 1f3c3dde10
2 changed files with 9 additions and 1 deletions

View File

@ -1224,6 +1224,13 @@ keybind: Keybinds = .{},
/// quick terminal, see the documentation for the `toggle_quick_terminal` /// quick terminal, see the documentation for the `toggle_quick_terminal`
/// binding action. /// 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. /// Changing this configuration requires restarting Ghostty completely.
@"quick-terminal-position": QuickTerminalPosition = .top, @"quick-terminal-position": QuickTerminalPosition = .top,

View File

@ -372,10 +372,11 @@ pub const Action = union(enum) {
/// is preserved between appearances, so you can always press the keybinding /// is preserved between appearances, so you can always press the keybinding
/// to bring it back up. /// 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 is a singleton; only one instance can exist at a time.
/// - It does not support tabs. /// - It does not support tabs.
/// - It does not support fullscreen.
/// - It will not be restored when the application is restarted /// - It will not be restored when the application is restarted
/// (for systems that support window restoration). /// (for systems that support window restoration).
/// ///