aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/globals.h
diff options
context:
space:
mode:
authorbfredl <bjorn.linse@gmail.com>2022-05-18 21:18:34 +0200
committerGitHub <noreply@github.com>2022-05-18 21:18:34 +0200
commit6f0baa0bb7a57ec4451047876321eb6f24130b10 (patch)
tree4257741199bb61a7fc76b6f794445b6f74b85a16 /src/nvim/globals.h
parent3eea66d65a75c83cbd6bd7ec2aa0886781c807c9 (diff)
parent503d8b0892dbfee2d69286574f7eba3708b9a902 (diff)
downloadrneovim-6f0baa0bb7a57ec4451047876321eb6f24130b10.tar.gz
rneovim-6f0baa0bb7a57ec4451047876321eb6f24130b10.tar.bz2
rneovim-6f0baa0bb7a57ec4451047876321eb6f24130b10.zip
Merge pull request #18620 from bfredl/multibar
fix(ui): make winbar work with floats and multigrid
Diffstat (limited to 'src/nvim/globals.h')
-rw-r--r--src/nvim/globals.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/nvim/globals.h b/src/nvim/globals.h
index 3231ac011a..1819af7ee4 100644
--- a/src/nvim/globals.h
+++ b/src/nvim/globals.h
@@ -84,7 +84,7 @@ EXTERN struct nvim_stats_s {
// 0 not starting anymore
// Number of Rows and Columns in the screen.
-// Note: Use default_grid.Rows and default_grid.Columns to access items in
+// Note: Use default_grid.rows and default_grid.cols to access items in
// default_grid.chars[]. They may have different values when the screen
// wasn't (re)allocated yet after setting Rows or Columns (e.g., when starting
// up).
@@ -421,10 +421,6 @@ EXTERN vimmenu_T *root_menu INIT(= NULL);
// overruling of menus that the user already defined.
EXTERN int sys_menu INIT(= false);
-// While redrawing the screen this flag is set. It means the screen size
-// ('lines' and 'rows') must not be changed.
-EXTERN int updating_screen INIT(= 0);
-
// All windows are linked in a list. firstwin points to the first entry,
// lastwin to the last entry (can be the same as firstwin) and curwin to the
// currently active window.