~animations~
This commit is contained in:
@@ -367,6 +367,11 @@ pub struct Config {
|
||||
pub inactive_pane_fade_ms: u64,
|
||||
/// Dim factor for inactive panes (0.0 = fully dimmed/black, 1.0 = no dimming).
|
||||
pub inactive_pane_dim: f32,
|
||||
/// Process names that should receive pane navigation keys instead of zterm handling them.
|
||||
/// When the foreground process matches one of these names, Alt+Arrow keys are passed
|
||||
/// to the application (e.g., for Neovim buffer navigation) instead of switching panes.
|
||||
/// Example: ["nvim", "vim", "helix"]
|
||||
pub pass_keys_to_programs: Vec<String>,
|
||||
/// Keybindings.
|
||||
pub keybindings: Keybindings,
|
||||
}
|
||||
@@ -380,6 +385,7 @@ impl Default for Config {
|
||||
scrollback_lines: 50_000,
|
||||
inactive_pane_fade_ms: 150,
|
||||
inactive_pane_dim: 0.6,
|
||||
pass_keys_to_programs: vec!["nvim".to_string(), "vim".to_string()],
|
||||
keybindings: Keybindings::default(),
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user