mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-20 10:46:07 +03:00
input: note fullscreen isn't supported by quick terminal
This commit is contained in:
@ -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,
|
||||||
|
|
||||||
|
@ -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).
|
||||||
///
|
///
|
||||||
|
Reference in New Issue
Block a user