diff options
Diffstat (limited to 'src/nvim/globals.h')
-rw-r--r-- | src/nvim/globals.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/globals.h b/src/nvim/globals.h index 3ae0d32d8f..620af9444c 100644 --- a/src/nvim/globals.h +++ b/src/nvim/globals.h @@ -606,7 +606,7 @@ EXTERN pos_T Insstart; // This is where the latest EXTERN pos_T Insstart_orig; // Stuff for VREPLACE mode. -EXTERN int orig_line_count INIT(= 0); // Line count when "gR" started +EXTERN linenr_T orig_line_count INIT(= 0); // Line count when "gR" started EXTERN int vr_lines_changed INIT(= 0); // #Lines changed by "gR" so far // increase around internal delete/replace |