diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2023-10-29 09:02:32 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-29 16:02:32 +0800 |
commit | 2dc9ceb99c018b15dcf0c443cad46efecccaf94e (patch) | |
tree | f1850d042c6628949b52d16e53912dd14683b298 /src/nvim/grid.c | |
parent | 0da27e9bdec14acf82731c4d5e0ad7d673697af7 (diff) | |
download | rneovim-2dc9ceb99c018b15dcf0c443cad46efecccaf94e.tar.gz rneovim-2dc9ceb99c018b15dcf0c443cad46efecccaf94e.tar.bz2 rneovim-2dc9ceb99c018b15dcf0c443cad46efecccaf94e.zip |
docs: small fixes (#25585)
Co-authored-by: tmummert <doczook@gmx.de>
Co-authored-by: parikshit adhikari <parikshitadhikari@gmail.com>
Diffstat (limited to 'src/nvim/grid.c')
-rw-r--r-- | src/nvim/grid.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/grid.c b/src/nvim/grid.c index c16625a330..efc819c26f 100644 --- a/src/nvim/grid.c +++ b/src/nvim/grid.c @@ -771,7 +771,7 @@ void grid_put_linebuf(ScreenGrid *grid, int row, int coloff, int col, int endcol ui_line(grid, row, start_pos, coloff + end_dirty, coloff + clear_end, bg_attr, wrap); } else if (grid->dirty_col) { - // TODO(bfredl): really get rid of the extra psuedo terminal in message.c + // TODO(bfredl): really get rid of the extra pseudo terminal in message.c // by using a linebuf_char copy for "throttled message line" if (clear_end > grid->dirty_col[row]) { grid->dirty_col[row] = clear_end; |