diff options
author | Gregory Anders <greg@gpanders.com> | 2021-08-16 12:20:46 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-16 11:20:46 -0700 |
commit | 4ba74953b514397b6c061edafe614917925b3a77 (patch) | |
tree | de11838a0239fba34c220ba288813bd7f6c3c6bd /src/nvim/options.lua | |
parent | 7215d356949bf07960cc3a3d8b83772635d729d0 (diff) | |
download | rneovim-4ba74953b514397b6c061edafe614917925b3a77.tar.gz rneovim-4ba74953b514397b6c061edafe614917925b3a77.tar.bz2 rneovim-4ba74953b514397b6c061edafe614917925b3a77.zip |
feat(defaults): switchbuf=uselast #15394
Diffstat (limited to 'src/nvim/options.lua')
-rw-r--r-- | src/nvim/options.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/options.lua b/src/nvim/options.lua index 7e4609d2ce..585f8d638a 100644 --- a/src/nvim/options.lua +++ b/src/nvim/options.lua @@ -2390,7 +2390,7 @@ return { type='string', list='onecomma', scope={'global'}, deny_duplicates=true, varname='p_swb', - defaults={if_true={vi=""}} + defaults={if_true={vi="uselast"}} }, { full_name='synmaxcol', abbreviation='smc', |