1
0
forked from aniani/vim

patch 8.2.1909: number of status line items is limited to 80

Problem:    Number of status line items is limited to 80.
Solution:   Dynamically allocate the arrays. (Rom Grk, closes #7181)
This commit is contained in:
Bram Moolenaar
2020-10-26 21:05:27 +01:00
parent c8970b9464
commit 8133cc6bf4
10 changed files with 164 additions and 117 deletions

View File

@@ -1229,14 +1229,15 @@ struct mapblock
#endif
};
/*
* Used for highlighting in the status line.
*/
struct stl_hlrec
typedef struct
{
char_u *start;
int userhl; // 0: no HL, 1-9: User HL, < 0 for syn ID
};
} stl_hlrec_T;
/*