forked from aniani/vim
patch 9.1.1152: Patch v9.1.1151 causes problems
Problem: Patch v9.1.1151 causes problems Solution: partially revert it (John Marriott) closes: #16736 Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
committed by
Christian Brabandt
parent
397700e507
commit
18bacc811c
@@ -88,8 +88,6 @@ static char_u noremapbuf_init[TYPELEN_INIT]; // initial typebuf.tb_noremap
|
|||||||
|
|
||||||
static size_t last_recorded_len = 0; // number of last recorded chars
|
static size_t last_recorded_len = 0; // number of last recorded chars
|
||||||
|
|
||||||
static size_t last_get_recorded_len = 0; // length of the string returned from the
|
|
||||||
// last call to get_recorded()
|
|
||||||
static size_t last_get_inserted_len = 0; // length of the string returned from the
|
static size_t last_get_inserted_len = 0; // length of the string returned from the
|
||||||
// last call to get_inserted()
|
// last call to get_inserted()
|
||||||
|
|
||||||
@@ -173,8 +171,9 @@ get_buffcont(
|
|||||||
get_recorded(void)
|
get_recorded(void)
|
||||||
{
|
{
|
||||||
char_u *p;
|
char_u *p;
|
||||||
|
size_t len;
|
||||||
|
|
||||||
p = get_buffcont(&recordbuff, TRUE, &last_get_recorded_len);
|
p = get_buffcont(&recordbuff, TRUE, &len);
|
||||||
if (p == NULL)
|
if (p == NULL)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
@@ -184,35 +183,22 @@ get_recorded(void)
|
|||||||
* Remove the characters that were added the last time, these must be the
|
* Remove the characters that were added the last time, these must be the
|
||||||
* (possibly mapped) characters that stopped the recording.
|
* (possibly mapped) characters that stopped the recording.
|
||||||
*/
|
*/
|
||||||
if (last_get_recorded_len >= last_recorded_len)
|
if (len >= last_recorded_len)
|
||||||
{
|
{
|
||||||
last_get_recorded_len -= last_recorded_len;
|
len -= last_recorded_len;
|
||||||
p[last_get_recorded_len] = NUL;
|
p[len] = NUL;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* When stopping recording from Insert mode with CTRL-O q, also remove the
|
* When stopping recording from Insert mode with CTRL-O q, also remove the
|
||||||
* CTRL-O.
|
* CTRL-O.
|
||||||
*/
|
*/
|
||||||
if (last_get_recorded_len > 0 && restart_edit != 0
|
if (len > 0 && restart_edit != 0 && p[len - 1] == Ctrl_O)
|
||||||
&& p[last_get_recorded_len - 1] == Ctrl_O)
|
p[len - 1] = NUL;
|
||||||
{
|
|
||||||
--last_get_recorded_len;
|
|
||||||
p[last_get_recorded_len] = NUL;
|
|
||||||
}
|
|
||||||
|
|
||||||
return (p);
|
return (p);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
* Return the length of string returned from the last call of get_recorded().
|
|
||||||
*/
|
|
||||||
size_t
|
|
||||||
get_recorded_len(void)
|
|
||||||
{
|
|
||||||
return last_get_recorded_len;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Return the contents of the redo buffer as a single string.
|
* Return the contents of the redo buffer as a single string.
|
||||||
* K_SPECIAL and CSI in the returned string are escaped.
|
* K_SPECIAL and CSI in the returned string are escaped.
|
||||||
|
@@ -1,6 +1,5 @@
|
|||||||
/* getchar.c */
|
/* getchar.c */
|
||||||
char_u *get_recorded(void);
|
char_u *get_recorded(void);
|
||||||
size_t get_recorded_len(void);
|
|
||||||
char_u *get_inserted(void);
|
char_u *get_inserted(void);
|
||||||
size_t get_inserted_len(void);
|
size_t get_inserted_len(void);
|
||||||
int stuff_empty(void);
|
int stuff_empty(void);
|
||||||
|
@@ -28,7 +28,7 @@ static yankreg_T *y_current; // ptr to current yankreg
|
|||||||
static int y_append; // TRUE when appending
|
static int y_append; // TRUE when appending
|
||||||
static yankreg_T *y_previous = NULL; // ptr to last written yankreg
|
static yankreg_T *y_previous = NULL; // ptr to last written yankreg
|
||||||
|
|
||||||
static int stuff_yank(int, char_u *, size_t);
|
static int stuff_yank(int, char_u *);
|
||||||
static void put_reedit_in_typebuf(int silent);
|
static void put_reedit_in_typebuf(int silent);
|
||||||
static int put_in_typebuf(char_u *s, int esc, int colon, int silent);
|
static int put_in_typebuf(char_u *s, int esc, int colon, int silent);
|
||||||
static int yank_copy_line(struct block_def *bd, long y_idx, int exclude_trailing_space);
|
static int yank_copy_line(struct block_def *bd, long y_idx, int exclude_trailing_space);
|
||||||
@@ -419,7 +419,7 @@ do_record(int c)
|
|||||||
old_y_previous = y_previous;
|
old_y_previous = y_previous;
|
||||||
old_y_current = y_current;
|
old_y_current = y_current;
|
||||||
|
|
||||||
retval = stuff_yank(regname, p, get_recorded_len());
|
retval = stuff_yank(regname, p);
|
||||||
|
|
||||||
y_previous = old_y_previous;
|
y_previous = old_y_previous;
|
||||||
y_current = old_y_current;
|
y_current = old_y_current;
|
||||||
@@ -435,8 +435,10 @@ do_record(int c)
|
|||||||
* return FAIL for failure, OK otherwise
|
* return FAIL for failure, OK otherwise
|
||||||
*/
|
*/
|
||||||
static int
|
static int
|
||||||
stuff_yank(int regname, char_u *p, size_t plen)
|
stuff_yank(int regname, char_u *p)
|
||||||
{
|
{
|
||||||
|
size_t plen;
|
||||||
|
|
||||||
// check for read-only register
|
// check for read-only register
|
||||||
if (regname != 0 && !valid_yank_reg(regname, TRUE))
|
if (regname != 0 && !valid_yank_reg(regname, TRUE))
|
||||||
{
|
{
|
||||||
@@ -449,6 +451,7 @@ stuff_yank(int regname, char_u *p, size_t plen)
|
|||||||
return OK;
|
return OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
plen = STRLEN(p);
|
||||||
get_yank_register(regname, TRUE);
|
get_yank_register(regname, TRUE);
|
||||||
if (y_append && y_current->y_array != NULL)
|
if (y_append && y_current->y_array != NULL)
|
||||||
{
|
{
|
||||||
|
@@ -704,6 +704,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 */
|
||||||
|
/**/
|
||||||
|
1152,
|
||||||
/**/
|
/**/
|
||||||
1151,
|
1151,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user