diff options
author | pommicket <pommicket@gmail.com> | 2023-08-05 22:22:03 -0400 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2023-08-05 22:22:03 -0400 |
commit | 61fcf4a14199486cc8bd7538ca236ac8fb93c0bb (patch) | |
tree | 882cc9871ea1068c265ccdc308f18e08199667dd /ted.h | |
parent | bcb5589f17f755b965dec49af3232a5a69a8e68f (diff) |
remove next menu bullshit
Diffstat (limited to 'ted.h')
-rw-r--r-- | ted.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -867,6 +867,10 @@ bool tag_goto(Ted *ted, const char *tag); void die(PRINTF_FORMAT_STRING const char *fmt, ...) ATTRIBUTE_PRINTF(1, 2); /// returns the current active buffer, or NULL if no buffer is active. TextBuffer *ted_get_active_buffer(Ted *ted); +/// if a menu is open, returns the buffer that was open before the menu was opened. +/// +/// returns NULL if no menu is open or no buffer was open before the menu was opened. +TextBuffer *ted_get_active_buffer_behind_menu(Ted *ted); /// set title of ted window void ted_set_window_title(Ted *ted, const char *title); /// returns `true` if the given SDL key code is down |