comparison 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
comparison
equal deleted inserted replaced
28188:01d18a7ad1cf 28189:7456bc6bf077
3429 * :scs[cope], :sim[alt], :sig[ns] and :sil[ent]. 3429 * :scs[cope], :sim[alt], :sig[ns] and :sil[ent].
3430 */ 3430 */
3431 static int 3431 static int
3432 one_letter_cmd(char_u *p, cmdidx_T *idx) 3432 one_letter_cmd(char_u *p, cmdidx_T *idx)
3433 { 3433 {
3434 if (!in_vim9script()) 3434 if (in_vim9script())
3435 return FALSE; 3435 return FALSE;
3436 if (*p == 'k') 3436 if (*p == 'k')
3437 { 3437 {
3438 *idx = CMD_k; 3438 *idx = CMD_k;
3439 return TRUE; 3439 return TRUE;