1
0
forked from aniani/vim

updated for version 7.4.387

Problem:    "4gro" replaces one character then executes "ooo". (Urtica Dioica)
Solution:   Write the ESC in the second stuff buffer.
This commit is contained in:
Bram Moolenaar
2014-07-30 16:00:58 +02:00
parent 23fb7a9955
commit 4f5ce33d41
12 changed files with 39 additions and 1 deletions

View File

@@ -678,6 +678,17 @@ stuffReadbuff(s)
add_buff(&readbuf1, s, -1L);
}
/*
* Append string "s" to the redo stuff buffer.
* CSI and K_SPECIAL must already have been escaped.
*/
void
stuffRedoReadbuff(s)
char_u *s;
{
add_buff(&readbuf2, s, -1L);
}
void
stuffReadbuffLen(s, len)
char_u *s;