Merge pull request #9170 from bfredl/lua_cb

lua callbacks for nvim_buf_attach
This commit is contained in:
Björn Linse
2019-06-04 14:54:44 +02:00
committed by GitHub
20 changed files with 301 additions and 59 deletions

View File

@@ -760,7 +760,7 @@ describe('API: buffer events:', function()
it('returns a proper error on nonempty options dict', function()
clear()
local b = editoriginal(false)
expect_err("dict isn't empty", buffer, 'attach', b, false, {builtin="asfd"})
expect_err("unexpected key: builtin", buffer, 'attach', b, false, {builtin="asfd"})
end)
it('nvim_buf_attach returns response after delay #8634', function()