diff options
| author | Mehmet Samet Duman <yongdohyun@projecttick.org> | 2026-04-04 00:19:59 +0300 |
|---|---|---|
| committer | Mehmet Samet Duman <yongdohyun@projecttick.org> | 2026-04-04 00:23:14 +0300 |
| commit | 5b578e70c314723a3cde5c9bfc2be0bf1dadc93b (patch) | |
| tree | 768f6a130e7d72ac6741e147bb51c4495bc7a9a9 /uvim/src/ex_docmd.c | |
| parent | 2eae5db069dc171f74cd863487655f6a88e5384d (diff) | |
| download | Project-Tick-5b578e70c314723a3cde5c9bfc2be0bf1dadc93b.tar.gz Project-Tick-5b578e70c314723a3cde5c9bfc2be0bf1dadc93b.zip | |
NOISSUE MNV - MNV's not Vim 10.0 is here!
this patch makes bump 9.2 to 10.0 for version number
added Project Tick rationale in mnv and made new intro
message!
This patch completes rebranding
Signed-off-by: Mehmet Samet Duman <yongdohyun@projecttick.org>
Diffstat (limited to 'uvim/src/ex_docmd.c')
| -rw-r--r-- | uvim/src/ex_docmd.c | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/uvim/src/ex_docmd.c b/uvim/src/ex_docmd.c index 5c3e044196..6e66e338a7 100644 --- a/uvim/src/ex_docmd.c +++ b/uvim/src/ex_docmd.c @@ -3101,6 +3101,19 @@ parse_command_modifiers( cmod->cmod_split |= WSP_ABOVE; continue; + case 'm': if (checkforcmd_noparen(&eap->cmd, "mnv9cmd", 4)) + { + if (ends_excmd2(p, eap->cmd)) + { + *errormsg = + _(e_mnv9cmd_must_be_followed_by_command); + return FAIL; + } + cmod->cmod_flags |= CMOD_MNV9CMD; + continue; + } + break; + case 'n': if (checkforcmd_noparen(&eap->cmd, "noautocmd", 3)) { cmod->cmod_flags |= CMOD_NOAUTOCMD; @@ -3169,17 +3182,6 @@ parse_command_modifiers( cmod->cmod_split |= WSP_VERT; continue; } - if (checkforcmd_noparen(&eap->cmd, "mnv9cmd", 4)) - { - if (ends_excmd2(p, eap->cmd)) - { - *errormsg = - _(e_mnv9cmd_must_be_followed_by_command); - return FAIL; - } - cmod->cmod_flags |= CMOD_MNV9CMD; - continue; - } if (!checkforcmd_noparen(&p, "verbose", 4)) break; if (mnv_isdigit(*eap->cmd)) |
