mirror of
https://github.com/neovim/neovim.git
synced 2025-10-04 17:06:30 +00:00
ops.c: breakout shared register type formatting code
This commit is contained in:
@@ -2,7 +2,11 @@
|
||||
#define NVIM_POS_H
|
||||
|
||||
typedef long linenr_T; // line number type
|
||||
typedef int colnr_T; // column number type
|
||||
|
||||
/// Column number type
|
||||
typedef int colnr_T;
|
||||
/// Format used to print values which have colnr_T type
|
||||
#define PRIdCOLNR "d"
|
||||
|
||||
#define MAXLNUM 0x7fffffff // maximum (invalid) line number
|
||||
#define MAXCOL 0x7fffffff // maximum column number, 31 bits
|
||||
|
Reference in New Issue
Block a user