From 9ca7b6b71a1e98ff6a76270d165fc8f07763a0c3 Mon Sep 17 00:00:00 2001 From: Mathias Fußenegger Date: Tue, 28 Sep 2021 01:12:03 +0200 Subject: fix(ui): s/format_entry/format_item to match docs (#15819) Follow up to https://github.com/neovim/neovim/pull/15771 --- test/functional/lua/ui_spec.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/functional/lua/ui_spec.lua') diff --git a/test/functional/lua/ui_spec.lua b/test/functional/lua/ui_spec.lua index 25a208b70b..94f1b5840b 100644 --- a/test/functional/lua/ui_spec.lua +++ b/test/functional/lua/ui_spec.lua @@ -17,7 +17,7 @@ describe('vim.ui', function() { name = 'Item 2' }, } local opts = { - format_entry = function(entry) + format_item = function(entry) return entry.name end } -- cgit