diff src/ex_docmd.c @ 28189:7456bc6bf077 v8.2.4620

patch 8.2.4620: two letter substitute commands don't work Commit: https://github.com/vim/vim/commit/1e2c4175dce903986dac66ba9326ae562b159421 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Mar 24 15:24:45 2022 +0000 patch 8.2.4620: two letter substitute commands don't work Problem: Two letter substitute commands don't work. (Yegappan Lakshmanan) Solution: Invert condition.
author Bram Moolenaar <Bram@vim.org>
date Thu, 24 Mar 2022 16:30:04 +0100
parents dcb449ae45c9
children 20ad2fd9f745
line wrap: on
line diff
--- a/src/ex_docmd.c
+++ b/src/ex_docmd.c
@@ -3431,7 +3431,7 @@ skip_option_env_lead(char_u *start)
     static int
 one_letter_cmd(char_u *p, cmdidx_T *idx)
 {
-    if (!in_vim9script())
+    if (in_vim9script())
 	return FALSE;
     if (*p == 'k')
     {