mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
patch 8.2.4620: two letter substitute commands don't work
Problem: Two letter substitute commands don't work. (Yegappan Lakshmanan) Solution: Invert condition.
This commit is contained in:
@@ -3431,7 +3431,7 @@ skip_option_env_lead(char_u *start)
|
|||||||
static int
|
static int
|
||||||
one_letter_cmd(char_u *p, cmdidx_T *idx)
|
one_letter_cmd(char_u *p, cmdidx_T *idx)
|
||||||
{
|
{
|
||||||
if (!in_vim9script())
|
if (in_vim9script())
|
||||||
return FALSE;
|
return FALSE;
|
||||||
if (*p == 'k')
|
if (*p == 'k')
|
||||||
{
|
{
|
||||||
|
@@ -750,6 +750,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
4620,
|
||||||
/**/
|
/**/
|
||||||
4619,
|
4619,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user