mirror of
https://github.com/neovim/neovim.git
synced 2025-10-06 18:06:30 +00:00
refactor: move some constants out of vim_defs.h (#26298)
This commit is contained in:
@@ -64,6 +64,12 @@ enum {
|
||||
CA_NO_ADJ_OP_END = 2, ///< don't adjust operator end
|
||||
};
|
||||
|
||||
/// Replacement for nchar used by nv_replace().
|
||||
enum {
|
||||
REPLACE_CR_NCHAR = -1,
|
||||
REPLACE_NL_NCHAR = -2,
|
||||
};
|
||||
|
||||
/// columns needed by shown command
|
||||
enum { SHOWCMD_COLS = 10, };
|
||||
enum { SHOWCMD_BUFLEN = SHOWCMD_COLS + 1 + 30, };
|
||||
|
Reference in New Issue
Block a user