aboutsummaryrefslogtreecommitdiff
path: root/test/functional/lua/vim_spec.lua
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2021-09-14 07:02:06 -0700
committerGitHub <noreply@github.com>2021-09-14 07:02:06 -0700
commit5a813160ae07570f9002bc55777f671f734fc2a4 (patch)
treeb6baa265634f92b138f2c275ddc1b579b1c59abd /test/functional/lua/vim_spec.lua
parent88336851ee1e9c3982195592ae2fc145ecfd3369 (diff)
parent917f30666657acc3ad3daf44425c4d28f7ffb299 (diff)
downloadrneovim-5a813160ae07570f9002bc55777f671f734fc2a4.tar.gz
rneovim-5a813160ae07570f9002bc55777f671f734fc2a4.tar.bz2
rneovim-5a813160ae07570f9002bc55777f671f734fc2a4.zip
Merge #15664 backport PRs
backport: PRs #14962, #14982, #14984, #14989, #15011, #15043
Diffstat (limited to 'test/functional/lua/vim_spec.lua')
-rw-r--r--test/functional/lua/vim_spec.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/lua/vim_spec.lua b/test/functional/lua/vim_spec.lua
index eff838aea3..976e63b44d 100644
--- a/test/functional/lua/vim_spec.lua
+++ b/test/functional/lua/vim_spec.lua
@@ -1332,12 +1332,12 @@ describe('lua stdlib', function()
it('should work for key-value pair options', function()
local listchars = exec_lua [[
- vim.opt.listchars = "tab:>~,space:_"
+ vim.opt.listchars = "tab:> ,space:_"
return vim.opt.listchars:get()
]]
eq({
- tab = ">~",
+ tab = "> ",
space = "_",
}, listchars)
end)