mirror of
https://github.com/neovim/neovim.git
synced 2025-09-12 06:18:16 +00:00
defaults: 'showcmd', 'belloff', 'ruler'
- Vim "unix default" of 'noshowcmd' is serving few users. And it's inconsistent. - 'ruler' and 'belloff=all' improve the out-of-the-box experience. - Continue to use 'noshowcmd' and 'noruler' by default in the functional tests to keep them fast. TODO: Add a "disable slow stuff" command or mapping to address the use-case of a very slow terminal connection.
This commit is contained in:
@@ -190,7 +190,7 @@ return {
|
||||
type='string', list='comma', scope={'global'},
|
||||
vi_def=true,
|
||||
varname='p_bo',
|
||||
defaults={if_true={vi=""}}
|
||||
defaults={if_true={vi="all"}}
|
||||
},
|
||||
{
|
||||
full_name='binary', abbreviation='bin',
|
||||
@@ -1883,7 +1883,7 @@ return {
|
||||
vim=true,
|
||||
redraw={'statuslines'},
|
||||
varname='p_ru',
|
||||
defaults={if_true={vi=false}}
|
||||
defaults={if_true={vi=true}}
|
||||
},
|
||||
{
|
||||
full_name='rulerformat', abbreviation='ruf',
|
||||
@@ -2119,11 +2119,7 @@ return {
|
||||
type='bool', scope={'global'},
|
||||
vim=true,
|
||||
varname='p_sc',
|
||||
defaults={
|
||||
condition='UNIX',
|
||||
if_true={vi=false, vim=false},
|
||||
if_false={vi=false, vim=true},
|
||||
}
|
||||
defaults={if_true={vi=false, vim=true}}
|
||||
},
|
||||
{
|
||||
full_name='showfulltag', abbreviation='sft',
|
||||
|
Reference in New Issue
Block a user