aboutsummaryrefslogtreecommitdiff
path: root/test/functional/ui/messages_spec.lua
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2019-12-01 22:43:16 -0800
committerJustin M. Keyes <justinkz@gmail.com>2019-12-02 20:52:06 -0800
commitc34130d13a842ae0c0c1724d05800a954547d327 (patch)
tree1f24de9e40afe266f35ebbb6c2fc09be969989c3 /test/functional/ui/messages_spec.lua
parent22b52dd462e5dc9d5429305215bfb20aa20517c5 (diff)
downloadrneovim-c34130d13a842ae0c0c1724d05800a954547d327.tar.gz
rneovim-c34130d13a842ae0c0c1724d05800a954547d327.tar.bz2
rneovim-c34130d13a842ae0c0c1724d05800a954547d327.zip
API: deprecate nvim_command_output
Diffstat (limited to 'test/functional/ui/messages_spec.lua')
-rw-r--r--test/functional/ui/messages_spec.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/ui/messages_spec.lua b/test/functional/ui/messages_spec.lua
index 40ea030f73..25b38b1feb 100644
--- a/test/functional/ui/messages_spec.lua
+++ b/test/functional/ui/messages_spec.lua
@@ -861,7 +861,7 @@ describe('ui/builtin messages', function()
-- screen size doesn't affect internal output #10285
eq('ErrorMsg xxx ctermfg=15 ctermbg=1 guifg=White guibg=Red',
- meths.command_output("hi ErrorMsg"))
+ meths.exec("hi ErrorMsg", true))
end)
it(':syntax list langGroup output', function()
@@ -900,7 +900,7 @@ vimComment xxx match /\s"[^\-:.%#=*].*$/ms=s+1,lc=1 excludenl contains=@vim
match /\<endif\s\+".*$/ms=s+5,lc=5 contains=@vimCommentGroup,vimCommentString
match /\<else\s\+".*$/ms=s+4,lc=4 contains=@vimCommentGroup,vimCommentString
links to Comment]],
- meths.command_output('syntax list vimComment'))
+ meths.exec('syntax list vimComment', true))
-- luacheck: pop
end)