mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
options: unify undolevels default
Considering Nvim's supported platforms, having a different default for (!Unix and !Windows) doesn't seem very useful.
This commit is contained in:
parent
e3289e5354
commit
fcd314223d
@ -6557,7 +6557,7 @@ A jump table for the options with a short description can be found at |Q_op|.
|
||||
When 'undofile' is turned off the undo file is NOT deleted.
|
||||
|
||||
*'undolevels'* *'ul'*
|
||||
'undolevels' 'ul' number (default 100, 1000 for Unix and Win32)
|
||||
'undolevels' 'ul' number (default 1000)
|
||||
global or local to buffer |global-local|
|
||||
Maximum number of changes that can be undone. Since undo information
|
||||
is kept in memory, higher numbers will cause more memory to be used
|
||||
|
@ -2525,11 +2525,7 @@ return {
|
||||
type='number', scope={'global', 'buffer'},
|
||||
vi_def=true,
|
||||
varname='p_ul',
|
||||
defaults={
|
||||
condition={'!UNIX', '!WIN3264'},
|
||||
if_true={vi=100},
|
||||
if_false={vi=1000},
|
||||
}
|
||||
defaults={if_true={vi=1000}}
|
||||
},
|
||||
{
|
||||
full_name='undoreload', abbreviation='ur',
|
||||
|
Loading…
Reference in New Issue
Block a user