Added GOTO_WINDOW to actions
parent
55ae4430b9
commit
afbcfa9e3d
|
|
@ -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,
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in New Issue