aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/options.lua
diff options
context:
space:
mode:
authorJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2021-03-28 13:40:34 -0400
committerGitHub <noreply@github.com>2021-03-28 13:40:34 -0400
commit63c2a7af2da3998167c7b1b06fb461b20b144c78 (patch)
tree77aa1b22e65a65c62fa4a062bb88945e02f5d5ca /src/nvim/options.lua
parent6d4a922e07e857b46d882ea96decce7c7c6e2a30 (diff)
parenta70d904ad0e2037c7fb2ae10a20f840af3544496 (diff)
downloadrneovim-63c2a7af2da3998167c7b1b06fb461b20b144c78.tar.gz
rneovim-63c2a7af2da3998167c7b1b06fb461b20b144c78.tar.bz2
rneovim-63c2a7af2da3998167c7b1b06fb461b20b144c78.zip
Merge pull request #13851 from VVKot/vim-8.1.0105
vim-patch:8.1.{0105,0114,0116,0126,0138,0154,0479,0542,0936}
Diffstat (limited to 'src/nvim/options.lua')
-rw-r--r--src/nvim/options.lua17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/nvim/options.lua b/src/nvim/options.lua
index f4c1ac9131..d12b31bcaf 100644
--- a/src/nvim/options.lua
+++ b/src/nvim/options.lua
@@ -2999,6 +2999,23 @@ return {
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"),
type='number', scope={'global'},