Added GOTO_WINDOW to actions

pull/9899/head
Max Bretschneider 2025-10-24 09:45:37 +02:00 committed by Mitchell Hashimoto
parent 55ae4430b9
commit afbcfa9e3d
1 changed files with 2 additions and 2 deletions

View File

@ -546,7 +546,7 @@ pub const Action = union(enum) {
goto_split: SplitFocusDirection,
/// Focus on either the previous window or the next one ('previous', 'next')
goto_window: WindowDirection,
goto_window: GotoWindow,
/// Zoom in or out of the current split.
///
@ -934,7 +934,7 @@ pub const Action = union(enum) {
right,
};
pub const WindowDirection = enum {
pub const GotoWindow = enum {
previous,
next,
};