mirror of
https://github.com/neovim/neovim.git
synced 2026-01-06 19:39:53 +10: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:
@@ -10,24 +10,25 @@ if exists('s:did_load')
|
||||
set formatoptions=tcq
|
||||
set fsync
|
||||
set include=^\\s*#\\s*include
|
||||
set laststatus=1
|
||||
set listchars=eol:$
|
||||
set joinspaces
|
||||
set jumpoptions=
|
||||
set laststatus=1
|
||||
set listchars=eol:$
|
||||
set maxsearchcount=99
|
||||
set mousemodel=extend
|
||||
set nohidden nosmarttab noautoindent noautoread noruler noshowcmd
|
||||
set nohlsearch noincsearch
|
||||
set nrformats=bin,octal,hex
|
||||
set shortmess=filnxtToOS
|
||||
set sessionoptions+=options
|
||||
set shelltemp
|
||||
set shortmess=filnxtToOS
|
||||
set sidescroll=0
|
||||
set startofline
|
||||
set switchbuf=
|
||||
set tags=./tags,tags
|
||||
set undodir^=.
|
||||
set wildoptions=
|
||||
set startofline
|
||||
set sessionoptions+=options
|
||||
set viewoptions+=options
|
||||
set switchbuf=
|
||||
set wildoptions=
|
||||
if has('win32')
|
||||
set isfname+=:
|
||||
endif
|
||||
|
||||
Reference in New Issue
Block a user