diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-12-02 22:38:36 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-02 22:38:36 -0800 |
commit | b1e4ec1c2a08981683b2355715a421c0bfb64644 (patch) | |
tree | 4b19d5f14230929c226ea916c1538fb492e511c0 /test/functional/ui/messages_spec.lua | |
parent | 22b52dd462e5dc9d5429305215bfb20aa20517c5 (diff) | |
parent | a3b6c2a3dc5576db45fe4e893cfb8482af591c92 (diff) | |
download | rneovim-b1e4ec1c2a08981683b2355715a421c0bfb64644.tar.gz rneovim-b1e4ec1c2a08981683b2355715a421c0bfb64644.tar.bz2 rneovim-b1e4ec1c2a08981683b2355715a421c0bfb64644.zip |
Merge #11500 from justinmk/api-deprecate
API: rename nvim_execute_lua, deprecate nvim_command_output
Diffstat (limited to 'test/functional/ui/messages_spec.lua')
-rw-r--r-- | test/functional/ui/messages_spec.lua | 4 |
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) |