Added GOTO_WINDOW to actions

This commit is contained in:
Max Bretschneider
2025-10-24 09:45:37 +02:00
committed by Mitchell Hashimoto
parent 55ae4430b9
commit afbcfa9e3d

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,
};