mirror of
https://github.com/vim/vim.git
synced 2025-09-25 03:54:15 -04:00
updated for version 7.0-034
This commit is contained in:
@@ -3020,9 +3020,6 @@ ins_compl_bs()
|
|||||||
if ((int)(p - line) - (int)compl_col <= 0)
|
if ((int)(p - line) - (int)compl_col <= 0)
|
||||||
return K_BS;
|
return K_BS;
|
||||||
|
|
||||||
/* For redo we need to repeat this backspace. */
|
|
||||||
AppendCharToRedobuff(K_BS);
|
|
||||||
|
|
||||||
/* Deleted more than what was used to find matches or didn't finish
|
/* Deleted more than what was used to find matches or didn't finish
|
||||||
* finding all matches: need to look for matches all over again. */
|
* finding all matches: need to look for matches all over again. */
|
||||||
if (curwin->w_cursor.col <= compl_col + compl_length
|
if (curwin->w_cursor.col <= compl_col + compl_length
|
||||||
@@ -3122,10 +3119,6 @@ ins_compl_addleader(c)
|
|||||||
#endif
|
#endif
|
||||||
ins_char(c);
|
ins_char(c);
|
||||||
|
|
||||||
/* For redo we need to count this character so that the number of
|
|
||||||
* backspaces is correct. */
|
|
||||||
AppendCharToRedobuff(c);
|
|
||||||
|
|
||||||
/* If we didn't complete finding matches we must search again. */
|
/* If we didn't complete finding matches we must search again. */
|
||||||
if (compl_was_interrupted)
|
if (compl_was_interrupted)
|
||||||
ins_compl_restart();
|
ins_compl_restart();
|
||||||
|
@@ -666,6 +666,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 */
|
||||||
|
/**/
|
||||||
|
34,
|
||||||
/**/
|
/**/
|
||||||
33,
|
33,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user