From be0d71f62df2afdab19a30bb9bd980e0d3288fe0 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Fri, 27 Sep 2024 10:15:06 -0700 Subject: [PATCH] apprt/embedded: add the tab overview to the enum --- include/ghostty.h | 1 + src/apprt/action.zig | 1 + 2 files changed, 2 insertions(+) diff --git a/include/ghostty.h b/include/ghostty.h index 571cbd904..7c81dbe77 100644 --- a/include/ghostty.h +++ b/include/ghostty.h @@ -505,6 +505,7 @@ typedef enum { GHOSTTY_ACTION_NEW_SPLIT, GHOSTTY_ACTION_CLOSE_ALL_WINDOWS, GHOSTTY_ACTION_TOGGLE_FULLSCREEN, + GHOSTTY_ACTION_TOGGLE_TAB_OVERVIEW, GHOSTTY_ACTION_TOGGLE_WINDOW_DECORATIONS, GHOSTTY_ACTION_GOTO_TAB, GHOSTTY_ACTION_GOTO_SPLIT, diff --git a/src/apprt/action.zig b/src/apprt/action.zig index 0941d65c9..9ed89b5a3 100644 --- a/src/apprt/action.zig +++ b/src/apprt/action.zig @@ -174,6 +174,7 @@ pub const Action = union(Key) { new_split, close_all_windows, toggle_fullscreen, + toggle_tab_overview, toggle_window_decorations, goto_tab, goto_split,