mirror of
https://github.com/neovim/neovim.git
synced 2026-05-05 13:35:02 +00:00
vim-patch:9.1.1535: the maximum search count uses hard-coded value 99 (#34873)
Problem: The maximum search count uses a hard-coded value of 99
(Andres Monge, Joschua Kesper)
Solution: Make it configurable using the 'maxsearchcount' option.
related: vim/vim#8855
fixes: vim/vim#17527
closes: vim/vim#17695
b7b7fa04bf
Co-authored-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
@@ -638,7 +638,7 @@ describe('ui/ext_messages', function()
|
||||
{10:line} 2 |
|
||||
{1:~ }|*3
|
||||
]],
|
||||
messages = { { content = { { '/line W [1/2]' } }, kind = 'search_count' } },
|
||||
messages = { { content = { { '/line W [1/2]' } }, kind = 'search_count' } },
|
||||
}
|
||||
|
||||
feed('n')
|
||||
@@ -648,7 +648,7 @@ describe('ui/ext_messages', function()
|
||||
{10:^line} 2 |
|
||||
{1:~ }|*3
|
||||
]],
|
||||
messages = { { content = { { '/line [2/2]' } }, kind = 'search_count' } },
|
||||
messages = { { content = { { '/line [2/2]' } }, kind = 'search_count' } },
|
||||
}
|
||||
end)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user