From dc6cc4787c16d2b339699c12136c400c1b3b5cef Mon Sep 17 00:00:00 2001 From: "Justin M. Keyes" Date: Sat, 17 Sep 2016 06:30:36 +0200 Subject: api: Establish API naming convention. (#5344) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit old name: new name: -------------------------------------------------- nvim_name_to_color nvim_get_color_by_name nvim_get_current_buffer nvim_get_current_buf nvim_get_current_window nvim_get_current_win nvim_get_buffers nvim_list_bufs nvim_get_tabpages nvim_list_tabpages nvim_get_windows nvim_list_wins nvim_set_current_buffer nvim_set_current_buf nvim_set_current_window nvim_set_current_win nvim_change_directory nvim_set_current_dir nvim_tabpage_get_window nvim_tabpage_get_win nvim_tabpage_get_windows nvim_tabpage_list_wins nvim_win_get_buffer nvim_win_get_buf nvim_report_error nvim_err_writeln Helped-by: Björn Linse Helped-by: ZyX Helped-by: James McCoy --- test/functional/helpers.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/functional/helpers.lua') diff --git a/test/functional/helpers.lua b/test/functional/helpers.lua index 65da278f9e..f6d09e6139 100644 --- a/test/functional/helpers.lua +++ b/test/functional/helpers.lua @@ -364,7 +364,7 @@ end local function curbuf(method, ...) if not method then - return nvim('get_current_buffer') + return nvim('get_current_buf') end return buffer(method, 0, ...) end @@ -387,7 +387,7 @@ end local function curwin(method, ...) if not method then - return nvim('get_current_window') + return nvim('get_current_win') end return window(method, 0, ...) end -- cgit