mirror of
https://github.com/neovim/neovim.git
synced 2025-09-11 13:58:18 +00:00
vim-patch:8.0.1495: having 'pumwidth' default to zero has no merit
Problem: Having 'pumwidth' default to zero has no merit.
Solution: Make the default 15, as the actual default value.
42443c7d7f
Includes 'pumwidth' documentation changes from 8.0.1531.
Sort 'pum*' option in alphabetical order.
This commit is contained in:
@@ -1815,6 +1815,14 @@ return {
|
||||
varname='p_prompt',
|
||||
defaults={if_true={vi=true}}
|
||||
},
|
||||
{
|
||||
full_name='pumblend', abbreviation='pb',
|
||||
type='number', scope={'global'},
|
||||
vi_def=true,
|
||||
redraw={'ui_option'},
|
||||
varname='p_pb',
|
||||
defaults={if_true={vi=0}}
|
||||
},
|
||||
{
|
||||
full_name='pumheight', abbreviation='ph',
|
||||
type='number', scope={'global'},
|
||||
@@ -1827,15 +1835,7 @@ return {
|
||||
type='number', scope={'global'},
|
||||
vi_def=true,
|
||||
varname='p_pw',
|
||||
defaults={if_true={vi=0}}
|
||||
},
|
||||
{
|
||||
full_name='pumblend', abbreviation='pb',
|
||||
type='number', scope={'global'},
|
||||
vi_def=true,
|
||||
redraw={'ui_option'},
|
||||
varname='p_pb',
|
||||
defaults={if_true={vi=0}}
|
||||
defaults={if_true={vi=15}}
|
||||
},
|
||||
{
|
||||
full_name='pyxversion', abbreviation='pyx',
|
||||
|
Reference in New Issue
Block a user