aboutsummaryrefslogtreecommitdiff
path: root/test/functional/lua/vim_spec.lua
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2023-07-21 16:30:05 +0800
committerGitHub <noreply@github.com>2023-07-21 16:30:05 +0800
commitca9f4a7cb1fea1ef1f22c011679fd8afa0a5d161 (patch)
tree1e8f5bcc01c2c2a4221a9cd5cf314a6a2b18565f /test/functional/lua/vim_spec.lua
parent58f94861442d182e153ba56b63b5b9845b295d2f (diff)
downloadrneovim-ca9f4a7cb1fea1ef1f22c011679fd8afa0a5d161.tar.gz
rneovim-ca9f4a7cb1fea1ef1f22c011679fd8afa0a5d161.tar.bz2
rneovim-ca9f4a7cb1fea1ef1f22c011679fd8afa0a5d161.zip
docs: also change "vimL" and "viml" to "Vimscript" (#24414)
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 f168e6ba1d..77c724b8e6 100644
--- a/test/functional/lua/vim_spec.lua
+++ b/test/functional/lua/vim_spec.lua
@@ -276,7 +276,7 @@ describe('lua stdlib', function()
|
]]}
- -- nvim_command causes a vimL exception, check that it is properly caught
+ -- nvim_command causes a Vimscript exception, check that it is properly caught
-- and propagated as an error message in async contexts.. #10809
exec_lua([[
vim.schedule(function()
@@ -831,7 +831,7 @@ describe('lua stdlib', function()
it('vim.call, vim.fn', function()
eq(true, exec_lua([[return vim.call('sin', 0.0) == 0.0 ]]))
eq(true, exec_lua([[return vim.fn.sin(0.0) == 0.0 ]]))
- -- compat: nvim_call_function uses "special" value for vimL float
+ -- compat: nvim_call_function uses "special" value for Vimscript float
eq(false, exec_lua([[return vim.api.nvim_call_function('sin', {0.0}) == 0.0 ]]))
exec([[