mirror of
https://github.com/neovim/neovim.git
synced 2025-10-16 06:46:07 +00:00
vim-patch:8.2.1262: src/ex_cmds.c file is too big (#19811)
Problem: src/ex_cmds.c file is too big.
Solution: Move help related code to src/help.c. (Yegappan Lakshmanan,
closes vim/vim#6506)
f868ba8903
This commit is contained in:
@@ -20,9 +20,9 @@
|
||||
#define ECMD_NOWINENTER 0x40 // do not trigger BufWinEnter
|
||||
|
||||
// for lnum argument in do_ecmd()
|
||||
#define ECMD_LASTL (linenr_T)0 // use last position in loaded file
|
||||
#define ECMD_LAST ((linenr_T) - 1) // use last position in all files
|
||||
#define ECMD_ONE (linenr_T)1 // use first line
|
||||
#define ECMD_LASTL (linenr_T)0 // use last position in loaded file
|
||||
#define ECMD_LAST ((linenr_T)(-1)) // use last position in all files
|
||||
#define ECMD_ONE (linenr_T)1 // use first line
|
||||
|
||||
/// Previous :substitute replacement string definition
|
||||
typedef struct {
|
||||
|
Reference in New Issue
Block a user