Patch 8.2.4620 (after 8.2.4618)
Problem: Two letter substitute commands don't work. (Yegappan Lakshmanan)
Solution: Invert condition.
Files: src/ex_docmd.c
*** ../vim-8.2.4619/src/ex_docmd.c 2022-03-24 13:08:31.883820059 +0000
--- src/ex_docmd.c 2022-03-24 15:20:57.818210172 +0000
***************
*** 3431,3437 ****
static int
one_letter_cmd(char_u *p, cmdidx_T *idx)
{
! if (!in_vim9script())
return FALSE;
if (*p == 'k')
{
--- 3431,3437 ----
static int
one_letter_cmd(char_u *p, cmdidx_T *idx)
{
! if (in_vim9script())
return FALSE;
if (*p == 'k')
{
*** ../vim-8.2.4619/src/version.c 2022-03-24 15:15:05.352816711 +0000
--- src/version.c 2022-03-24 15:22:11.186345437 +0000
***************
*** 752,753 ****
--- 752,755 ----
{ /* Add new patch number below this line */
+ /**/
+ 4620,
/**/
--
MORTICIAN: What?
CUSTOMER: Nothing -- here's your nine pence.
DEAD PERSON: I'm not dead!
MORTICIAN: Here -- he says he's not dead!
CUSTOMER: Yes, he is.
DEAD PERSON: I'm not!
The Quest for the Holy Grail (Monty Python)
/// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net \\\
/// \\\
\\\ sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ ///
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/vim_dev/20220324152522.54FF31C0A2F%40moolenaar.net.