mirror of
https://github.com/neovim/neovim.git
synced 2025-09-12 14:28:18 +00:00
vim-patch:8.1.0105: all tab stops are the same
Problem: All tab stops are the same.
Solution: Add the variable tabstop feature. (Christian Brabandt,
closes vim/vim#2711)
04958cbaf2
This commit is contained in:
@@ -2998,6 +2998,23 @@ return {
|
||||
varname='p_ut',
|
||||
defaults={if_true={vi=4000}}
|
||||
},
|
||||
{
|
||||
full_name='varsofttabstop', abbreviation='vsts',
|
||||
short_desc=N_("list of numbers of spaces that <Tab> uses while editing"),
|
||||
type='string', list='comma', scope={'buffer'},
|
||||
vi_def=true,
|
||||
varname='p_vsts',
|
||||
defaults={if_true={vi=""}}
|
||||
},
|
||||
{
|
||||
full_name='vartabstop', abbreviation='vts',
|
||||
short_desc=N_("list of numbers of spaces that <Tab> in file uses"),
|
||||
type='string', list='comma', scope={'buffer'},
|
||||
vi_def=true,
|
||||
varname='p_vts',
|
||||
redraw={'current_buffer'},
|
||||
defaults={if_true={vi=""}}
|
||||
},
|
||||
{
|
||||
full_name='verbose', abbreviation='vbs',
|
||||
short_desc=N_("give informative messages"),
|
||||
|
Reference in New Issue
Block a user