diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-04-25 02:17:15 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2017-04-26 03:41:24 +0200 |
commit | 00843902d3472ac4e74106fc06fa60e599914496 (patch) | |
tree | 6d227b71062232086a218af7086d2b31552dc69c /src/nvim/window.c | |
parent | 88023d51238698dd625c26300142d3dbe5770b73 (diff) | |
download | rneovim-00843902d3472ac4e74106fc06fa60e599914496.tar.gz rneovim-00843902d3472ac4e74106fc06fa60e599914496.tar.bz2 rneovim-00843902d3472ac4e74106fc06fa60e599914496.zip |
api/ui: externalize tabline
- Work with a bool[] array parallel to the UIWidget enum.
- Rename some functions.
- Documentation.
Diffstat (limited to 'src/nvim/window.c')
-rw-r--r-- | src/nvim/window.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/window.c b/src/nvim/window.c index effce8b413..69c0a838ea 100644 --- a/src/nvim/window.c +++ b/src/nvim/window.c @@ -5224,8 +5224,8 @@ static void last_status_rec(frame_T *fr, int statusline) */ int tabline_height(void) { - if (ui_is_widget_external(kUITabline)) { - return 0; + if (ui_is_external(kUITabline)) { + return 0; } assert(first_tabpage); switch (p_stal) { |