mirror of
https://github.com/neovim/neovim.git
synced 2025-09-29 06:28:35 +00:00
[RDY] Add buffer information to tabline_update (#12481)
* Add buffer information to tabline_update Most terminal implementations of the tabline display buffer and tab information. Many neovim-qt users disable GuiTabline because it lacks functionality provided in the terminal implementation. The tabline_update event should include buffer information too, so client GUIs can display rich useful tabs.
This commit is contained in:
@@ -130,7 +130,8 @@ void popupmenu_hide(void)
|
||||
void popupmenu_select(Integer selected)
|
||||
FUNC_API_SINCE(3) FUNC_API_REMOTE_ONLY;
|
||||
|
||||
void tabline_update(Tabpage current, Array tabs)
|
||||
void tabline_update(Tabpage current, Array tabs,
|
||||
Buffer current_buffer, Array buffers)
|
||||
FUNC_API_SINCE(3) FUNC_API_REMOTE_ONLY;
|
||||
|
||||
void cmdline_show(Array content, Integer pos, String firstc, String prompt,
|
||||
|
Reference in New Issue
Block a user