diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-05-07 08:59:07 +0800 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2022-05-07 09:55:13 +0800 |
commit | f5ed1b3908e7284e67d86d42711dc927870855b3 (patch) | |
tree | 432728feb41b37352292220ece6d6caa49c0bd73 /src/nvim/extmark.h | |
parent | b2a8ed08551d2edf2bf98e830860f0130acd00f8 (diff) | |
download | rneovim-f5ed1b3908e7284e67d86d42711dc927870855b3.tar.gz rneovim-f5ed1b3908e7284e67d86d42711dc927870855b3.tar.bz2 rneovim-f5ed1b3908e7284e67d86d42711dc927870855b3.zip |
fix(extmarks): revert to int for extmark row
Diffstat (limited to 'src/nvim/extmark.h')
-rw-r--r-- | src/nvim/extmark.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/extmark.h b/src/nvim/extmark.h index 84d1e8d03b..b856a1148f 100644 --- a/src/nvim/extmark.h +++ b/src/nvim/extmark.h @@ -29,7 +29,7 @@ typedef ptrdiff_t bcount_t; // delete the columns between mincol and endcol typedef struct { - linenr_T start_row; + int start_row; colnr_T start_col; int old_row; colnr_T old_col; |