mirror of
https://github.com/vim/vim.git
synced 2025-11-16 23:24:03 -05:00
patch 9.1.0256: Finding autocmd events is inefficient
Problem: Finding autocmd events is inefficient
Solution: Use binary search to find events, cache last found events,
avoid use of strlen(), add SessionWritePost autocmd,
fix test_codestyle and avoid endless loop
(John Marriott)
closes: #14287
Signed-off-by: John Marriott <basilisk@internode.on.net>
Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
committed by
Christian Brabandt
parent
16cdfa69e0
commit
78d742ab88
@@ -61,4 +61,8 @@ int mch_parse_cmd(char_u *cmd, int use_shcf, char ***argv, int *argc);
|
||||
int build_argv_from_string(char_u *cmd, char ***argv, int *argc);
|
||||
int build_argv_from_list(list_T *l, char ***argv, int *argc);
|
||||
int get_special_pty_type(void);
|
||||
int cmp_keyvalue_value(const void *a, const void *b);
|
||||
int cmp_keyvalue_value_n(const void *a, const void *b);
|
||||
int cmp_keyvalue_value_i(const void *a, const void *b);
|
||||
int cmp_keyvalue_value_ni(const void *a, const void *b);
|
||||
/* vim: set ft=c : */
|
||||
|
||||
Reference in New Issue
Block a user