diff options
author | nicm <nicm> | 2020-03-24 08:09:43 +0000 |
---|---|---|
committer | nicm <nicm> | 2020-03-24 08:09:43 +0000 |
commit | 8a838b0372163e1a7c0379991545a55028bb9eba (patch) | |
tree | e661c7515692850627863e31a357c2305f4dabcd /cmd.c | |
parent | edca27ae45db7be104bc56a4e48e55cddc40acdb (diff) | |
download | rtmux-8a838b0372163e1a7c0379991545a55028bb9eba.tar.gz rtmux-8a838b0372163e1a7c0379991545a55028bb9eba.tar.bz2 rtmux-8a838b0372163e1a7c0379991545a55028bb9eba.zip |
Add support for overlay popup boxes to show text or output temporarily
above the normal layout. These work similarly to menus and are created
with the display-popup command.
Diffstat (limited to 'cmd.c')
-rw-r--r-- | cmd.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -44,6 +44,7 @@ extern const struct cmd_entry cmd_delete_buffer_entry; extern const struct cmd_entry cmd_detach_client_entry; extern const struct cmd_entry cmd_display_menu_entry; extern const struct cmd_entry cmd_display_message_entry; +extern const struct cmd_entry cmd_display_popup_entry; extern const struct cmd_entry cmd_display_panes_entry; extern const struct cmd_entry cmd_down_pane_entry; extern const struct cmd_entry cmd_find_window_entry; @@ -133,6 +134,7 @@ const struct cmd_entry *cmd_table[] = { &cmd_detach_client_entry, &cmd_display_menu_entry, &cmd_display_message_entry, + &cmd_display_popup_entry, &cmd_display_panes_entry, &cmd_find_window_entry, &cmd_has_session_entry, |