diff options
| author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2024-08-29 00:11:32 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-29 06:11:32 +0800 |
| commit | cd05a72fec49bfaa3911c141ac605b67b6e2270a (patch) | |
| tree | 2b728b87a5c6896ab676b5e426ab198cb78b50a5 /src/nvim/tui | |
| parent | 3085c9d9daab611a2a20a1db44868a2e4c8f759e (diff) | |
| download | rneovim-cd05a72fec49bfaa3911c141ac605b67b6e2270a.tar.gz rneovim-cd05a72fec49bfaa3911c141ac605b67b6e2270a.tar.bz2 rneovim-cd05a72fec49bfaa3911c141ac605b67b6e2270a.zip | |
docs: misc (#29719)
Co-authored-by: Evgeni Chasnovski <evgeni.chasnovski@gmail.com>
Co-authored-by: Lauri Heiskanen <lauri.heiskanen@nimble.fi>
Co-authored-by: Piotr Doroszewski <5605596+Doroszewski@users.noreply.github.com>
Co-authored-by: Tobiasz Laskowski <tobil4sk@outlook.com>
Co-authored-by: ariel-lindemann <41641978+ariel-lindemann@users.noreply.github.com>
Co-authored-by: glepnir <glephunter@gmail.com>
Co-authored-by: zeertzjq <zeertzjq@outlook.com>
Diffstat (limited to 'src/nvim/tui')
| -rw-r--r-- | src/nvim/tui/tui.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/tui/tui.c b/src/nvim/tui/tui.c index d8b79fb193..1866a4a592 100644 --- a/src/nvim/tui/tui.c +++ b/src/nvim/tui/tui.c @@ -1038,7 +1038,7 @@ static void clear_region(TUIData *tui, int top, int bot, int left, int right, in // with the default colorscheme background. Consequently, any flush that happens // during startup would result in clearing invalidated regions with zeroed // clear_attrs, perceived as a black flicker. Reset attributes to clear with - // current terminal background instead(#28667, #28668). + // current terminal background instead (#28667, #28668). if (tui->set_default_colors) { update_attrs(tui, attr_id); } else { |