We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a52dfae commit 507edf6Copy full SHA for 507edf6
src/buffer.c
@@ -2793,6 +2793,8 @@ buflist_list(eap)
2793
(buf->b_flags & BF_READERR) ? 'x'
2794
: (bufIsChanged(buf) ? '+' : ' '),
2795
NameBuff);
2796
+ if (len > IOSIZE - 20)
2797
+ len = IOSIZE - 20;
2798
2799
/* put "line 999" in column 40 or after the file name */
2800
i = 40 - vim_strsize(IObuff);
src/version.c
@@ -741,6 +741,8 @@ static char *(features[]) =
741
742
static int included_patches[] =
743
{ /* Add new patch number below this line */
744
+/**/
745
+ 1086,
746
/**/
747
1085,
748
0 commit comments