summaryrefslogtreecommitdiffstats
path: root/src/getchar.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2017-04-08 18:41:13 +0200
committerBram Moolenaar <Bram@vim.org>2017-04-08 18:41:13 +0200
commitd34f9b1155a6b470e1dc766ff98192f440e7eba7 (patch)
treea4f8d191d0d3727d184a95eeef715d5c9c339d21 /src/getchar.c
parent9585a1655ba0d34ea88574617112093a9bd4f2e9 (diff)
patch 8.0.0551: the typeahead buffer is reallocated too oftenv8.0.0551
Problem: The typeahead buffer is reallocated too often. Solution: Re-use the existing buffer if possible.
Diffstat (limited to 'src/getchar.c')
-rw-r--r--src/getchar.c16
1 files changed, 13 insertions, 3 deletions
diff --git a/src/getchar.c b/src/getchar.c
index c057861a61..18af2a3740 100644
--- a/src/getchar.c
+++ b/src/getchar.c
@@ -920,7 +920,7 @@ init_typebuf(void)
typebuf.tb_noremap = noremapbuf_init;
typebuf.tb_buflen = TYPELEN_INIT;
typebuf.tb_len = 0;
- typebuf.tb_off = 0;
+ typebuf.tb_off = MAXMAPLEN + 4;
typebuf.tb_change_cnt = 1;
}
}
@@ -974,11 +974,21 @@ ins_typebuf(
typebuf.tb_off -= addlen;
mch_memmove(typebuf.tb_buf + typebuf.tb_off, str, (size_t)addlen);
}
+ else if (typebuf.tb_len == 0 && typebuf.tb_buflen
+ >= addlen + 3 * (MAXMAPLEN + 4))
+ {
+ /*
+ * Buffer is empty and string fits in the existing buffer.
+ * Leave some space before and after, if possible.
+ */
+ typebuf.tb_off = (typebuf.tb_buflen - addlen - 3 * (MAXMAPLEN + 4)) / 2;
+ mch_memmove(typebuf.tb_buf + typebuf.tb_off, str, (size_t)addlen);
+ }
else
{
/*
* Need to allocate a new buffer.
- * In typebuf.tb_buf there must always be room for 3 * MAXMAPLEN + 4
+ * In typebuf.tb_buf there must always be room for 3 * (MAXMAPLEN + 4)
* characters. We add some extra room to avoid having to allocate too
* often.
*/
@@ -1291,7 +1301,7 @@ alloc_typebuf(void)
return FAIL;
}
typebuf.tb_buflen = TYPELEN_INIT;
- typebuf.tb_off = 0;
+ typebuf.tb_off = MAXMAPLEN + 4; /* can insert without realloc */
typebuf.tb_len = 0;
typebuf.tb_maplen = 0;
typebuf.tb_silent = 0;