diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2020-01-18 13:22:25 +0100 |
---|---|---|
committer | Björn Linse <bjorn.linse@gmail.com> | 2020-09-09 21:22:21 +0200 |
commit | 333bfd5a29905b0cc4684657f0d0539238b6dbc4 (patch) | |
tree | 730b30fbea945980ea1529321b9dbcc5e8056448 /src/nvim/extmark.h | |
parent | f42aa95fbc7b949213ed204dfd0310e182e7e378 (diff) | |
download | rneovim-333bfd5a29905b0cc4684657f0d0539238b6dbc4.tar.gz rneovim-333bfd5a29905b0cc4684657f0d0539238b6dbc4.tar.bz2 rneovim-333bfd5a29905b0cc4684657f0d0539238b6dbc4.zip |
extmark: use resonable names in extmark_splice
Diffstat (limited to 'src/nvim/extmark.h')
-rw-r--r-- | src/nvim/extmark.h | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/nvim/extmark.h b/src/nvim/extmark.h index c569e8b78d..e1197834bd 100644 --- a/src/nvim/extmark.h +++ b/src/nvim/extmark.h @@ -25,10 +25,13 @@ typedef kvec_t(ExtmarkInfo) ExtmarkInfoArray; typedef struct { int start_row; colnr_T start_col; - int oldextent_row; - colnr_T oldextent_col; - int newextent_row; - colnr_T newextent_col; + int old_row; + colnr_T old_col; + int new_row; + colnr_T new_col; + size_t start_byte; + size_t old_byte; + size_t new_byte; } ExtmarkSplice; // adjust marks after :move operation |