mirror of
https://github.com/neovim/neovim.git
synced 2025-09-27 05:28:33 +00:00
paste: WIP #4448
This commit is contained in:
@@ -151,7 +151,6 @@ static char_u typebuf_init[TYPELEN_INIT]; /* initial typebuf.tb_buf */
|
||||
static char_u noremapbuf_init[TYPELEN_INIT]; /* initial typebuf.tb_noremap */
|
||||
|
||||
static size_t last_recorded_len = 0; // number of last recorded chars
|
||||
static const uint8_t ui_toggle[] = { K_SPECIAL, KS_EXTRA, KE_PASTE, 0 };
|
||||
|
||||
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
||||
# include "getchar.c.generated.h"
|
||||
@@ -1902,14 +1901,8 @@ static int vgetorpeek(int advance)
|
||||
}
|
||||
}
|
||||
|
||||
// Check for a key that can toggle the 'paste' option
|
||||
if (mp == NULL && (State & (INSERT|NORMAL))) {
|
||||
bool match = typebuf_match_len(ui_toggle, &mlen);
|
||||
if (!match && mlen != typebuf.tb_len && *p_pt != NUL) {
|
||||
// didn't match ui_toggle_key and didn't try the whole typebuf,
|
||||
// check the 'pastetoggle'
|
||||
match = typebuf_match_len(p_pt, &mlen);
|
||||
}
|
||||
if (*p_pt != NUL && mp == NULL && (State & (INSERT|NORMAL))) {
|
||||
bool match = typebuf_match_len(p_pt, &mlen);
|
||||
if (match) {
|
||||
// write chars to script file(s)
|
||||
if (mlen > typebuf.tb_maplen) {
|
||||
@@ -1940,8 +1933,7 @@ static int vgetorpeek(int advance)
|
||||
}
|
||||
|
||||
if ((mp == NULL || max_mlen >= mp_match_len)
|
||||
&& keylen != KEYLEN_PART_MAP
|
||||
&& !(keylen == KEYLEN_PART_KEY && c1 == ui_toggle[0])) {
|
||||
&& keylen != KEYLEN_PART_MAP) {
|
||||
// No matching mapping found or found a non-matching mapping that
|
||||
// matches at least what the matching mapping matched
|
||||
keylen = 0;
|
||||
|
Reference in New Issue
Block a user