diff --git a/src/input/Binding.zig b/src/input/Binding.zig index a3284c718..31672bc1a 100644 --- a/src/input/Binding.zig +++ b/src/input/Binding.zig @@ -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, };