From a79d28e4d7939c13f38cf4ce63ff240011bca96d Mon Sep 17 00:00:00 2001 From: zeertzjq Date: Sun, 6 Nov 2022 17:58:13 +0800 Subject: vim-patch:9.0.0265: no good reason why the "gf" command isn't in the tiny version (#20964) Problem: No good reason why the "gf" command is not in the tiny version. Solution: Graduate the file_in_path feature. https://github.com/vim/vim/commit/f80f40a55ccff0a4331c5fbd1ac446511f622ed0 Co-authored-by: Bram Moolenaar --- src/nvim/window.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/nvim/window.c') diff --git a/src/nvim/window.c b/src/nvim/window.c index c755f58c4f..10b366ce23 100644 --- a/src/nvim/window.c +++ b/src/nvim/window.c @@ -585,6 +585,7 @@ wingotofile: cmdmod.cmod_tab = tabpage_index(curtab) + 1; nchar = xchar; goto wingotofile; + case 't': // CTRL-W gt: go to next tab page goto_tabpage((int)Prenum); break; -- cgit