core: fix up toggle_slide_terminal action for rebase

This commit is contained in:
Mitchell Hashimoto
2024-09-25 09:48:47 -07:00
parent bdc2c02f23
commit 7806366eec
7 changed files with 9 additions and 6 deletions

View File

@@ -93,6 +93,9 @@ pub const Action = union(Key) {
/// Toggle whether window directions are shown.
toggle_window_decorations,
/// Toggle the slide terminal in or out.
toggle_slide_terminal,
/// Jump to a specific tab. Must handle the scenario that the tab
/// value is invalid.
goto_tab: GotoTab,
@@ -176,6 +179,7 @@ pub const Action = union(Key) {
toggle_fullscreen,
toggle_tab_overview,
toggle_window_decorations,
toggle_slide_terminal,
goto_tab,
goto_split,
resize_split,

View File

@@ -196,6 +196,7 @@ pub const App = struct {
.close_all_windows,
.toggle_tab_overview,
.toggle_window_decorations,
.toggle_slide_terminal,
.goto_tab,
.inspector,
.render_inspector,

View File

@@ -379,6 +379,7 @@ pub fn performAction(
// Unimplemented
.close_all_windows,
.toggle_split_zoom,
.toggle_slide_terminal,
.size_limit,
.cell_size,
.secure_input,