diff options
author | shadmansaleh <shadmansaleh3@gmail.com> | 2021-04-20 22:38:22 +0600 |
---|---|---|
committer | shadmansaleh <shadmansaleh3@gmail.com> | 2021-05-09 06:37:01 +0600 |
commit | 5c404ad0fa55b8420579d283710333a82f716d6b (patch) | |
tree | 56d63fb6828df43163e5daaff50385cb5a374258 /src/nvim/search.h | |
parent | 420344324e3abcb9766d03b08758e719aee746d0 (diff) | |
download | rneovim-5c404ad0fa55b8420579d283710333a82f716d6b.tar.gz rneovim-5c404ad0fa55b8420579d283710333a82f716d6b.tar.bz2 rneovim-5c404ad0fa55b8420579d283710333a82f716d6b.zip |
vim-patch:8.2.0884: searchcount() test fails on slower systems
Problem: Searchcount() test fails on slower systems.
Solution: Set a longer timeout.
https://github.com/vim/vim/commit/ea6561af92eeb26fa0b4966575da7cadd98af1cd
Diffstat (limited to 'src/nvim/search.h')
-rw-r--r-- | src/nvim/search.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/search.h b/src/nvim/search.h index 07e1062ac7..98ddaa5eeb 100644 --- a/src/nvim/search.h +++ b/src/nvim/search.h @@ -51,7 +51,7 @@ #define RE_LAST 2 /* use last used pattern if "pat" is NULL */ // Values for searchcount() -#define SEARCH_STAT_DEF_TIMEOUT 20L +#define SEARCH_STAT_DEF_TIMEOUT 40L #define SEARCH_STAT_DEF_MAX_COUNT 99 #define SEARCH_STAT_BUF_LEN 12 |