mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-16 08:46:08 +03:00
docs: inline ssh-integration documentation instead of referencing enum
This commit is contained in:
@ -1975,11 +1975,18 @@ keybind: Keybinds = .{},
|
|||||||
/// Example: `cursor`, `no-cursor`, `sudo`, `no-sudo`, `title`, `no-title`
|
/// Example: `cursor`, `no-cursor`, `sudo`, `no-sudo`, `title`, `no-title`
|
||||||
@"shell-integration-features": ShellIntegrationFeatures = .{},
|
@"shell-integration-features": ShellIntegrationFeatures = .{},
|
||||||
|
|
||||||
/// SSH integration level. This controls what level of SSH integration
|
/// SSH integration levels for shell integration.
|
||||||
/// is performed when using the ssh wrapper provided by shell integration.
|
/// Controls how much SSH integration is performed when connecting to remote hosts.
|
||||||
/// Requires shell integration to be enabled to function.
|
|
||||||
///
|
///
|
||||||
/// See SSHIntegration for available options.
|
/// Allowable values are:
|
||||||
|
///
|
||||||
|
/// * `off` - No SSH integration, use standard ssh command
|
||||||
|
///
|
||||||
|
/// * `term-only` - Only fix TERM compatibility (xterm-ghostty -> xterm-256color)
|
||||||
|
///
|
||||||
|
/// * `basic` - TERM fix + environment variable propagation
|
||||||
|
///
|
||||||
|
/// * `full` - All features: TERM fix + env vars + terminfo installation
|
||||||
///
|
///
|
||||||
/// The default value is `off`.
|
/// The default value is `off`.
|
||||||
@"ssh-integration": SSHIntegration = .off,
|
@"ssh-integration": SSHIntegration = .off,
|
||||||
|
Reference in New Issue
Block a user