diff options
author | luukvbaal <luukvbaal@gmail.com> | 2024-04-29 02:51:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-28 17:51:33 -0700 |
commit | ab1c2220f0c7f63e2081eb22544fed9fc4b4c611 (patch) | |
tree | c2e87537b392db213c70f3837ebf104d86d9051d /src/nvim/ui.c | |
parent | 05be00a2d172b390a2c49828eb8933492cc8345a (diff) | |
download | rneovim-ab1c2220f0c7f63e2081eb22544fed9fc4b4c611.tar.gz rneovim-ab1c2220f0c7f63e2081eb22544fed9fc4b4c611.tar.bz2 rneovim-ab1c2220f0c7f63e2081eb22544fed9fc4b4c611.zip |
fix(ui): activating all ext capabilities without remote UI #28555
Diffstat (limited to 'src/nvim/ui.c')
-rw-r--r-- | src/nvim/ui.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ui.c b/src/nvim/ui.c index 27458d588b..f5bab309d8 100644 --- a/src/nvim/ui.c +++ b/src/nvim/ui.c @@ -198,7 +198,7 @@ void ui_refresh(void) int height = INT_MAX; bool ext_widgets[kUIExtCount]; for (UIExtension i = 0; (int)i < kUIExtCount; i++) { - ext_widgets[i] = true; + ext_widgets[i] = ui_active(); } bool inclusive = ui_override(); |