1
0
forked from aniani/vim

patch 9.1.0060: Recorded register cannot be translated using keytrans()

Problem:  Recorded register cannot be translated using keytrans() when
          it involves character search (iddqd505)
Solution: Record a K_IGNORE instead of a K_NOP (zeertzjq)

related: #13916
closes: #13925

Signed-off-by: zeertzjq <zeertzjq@outlook.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
zeertzjq
2024-01-28 19:03:00 +01:00
committed by Christian Brabandt
parent cf8695d48c
commit bf321806bf
6 changed files with 15 additions and 11 deletions

View File

@@ -1339,12 +1339,12 @@ gotchars(char_u *chars, int len)
}
/*
* Record a <Nop> key.
* Record an <Ignore> key.
*/
void
gotchars_nop(void)
gotchars_ignore(void)
{
char_u nop_buf[3] = { K_SPECIAL, KS_EXTRA, KE_NOP };
char_u nop_buf[3] = { K_SPECIAL, KS_EXTRA, KE_IGNORE };
gotchars(nop_buf, 3);
}
@@ -3666,9 +3666,9 @@ vgetorpeek(int advance)
#endif
if (timedout && c == ESC)
{
// When recording there will be no timeout. Add a <Nop> after the ESC
// to avoid that it forms a key code with following characters.
gotchars_nop();
// When recording there will be no timeout. Add an <Ignore> after the
// ESC to avoid that it forms a key code with following characters.
gotchars_ignore();
}
--vgetc_busy;