diff options
author | We're Yet <58348703+butwerenotthereyet@users.noreply.github.com> | 2020-01-01 09:52:13 -0800 |
---|---|---|
committer | We're Yet <58348703+butwerenotthereyet@users.noreply.github.com> | 2020-01-03 06:01:47 -0800 |
commit | 42aa8764881ed8572d563766575c053db085f6db (patch) | |
tree | 1a718673f4733aaed1cb6277a44ea0a595fa20d5 /src/nvim/window.c | |
parent | 0c436559dfba9e0bb7e6ce5a835ed8eee540205f (diff) | |
download | rneovim-42aa8764881ed8572d563766575c053db085f6db.tar.gz rneovim-42aa8764881ed8572d563766575c053db085f6db.tar.bz2 rneovim-42aa8764881ed8572d563766575c053db085f6db.zip |
vim-patch:8.1.0972: cannot switch from terminal window to next tabpage
Problem: Cannot switch from terminal window to next tabpage.
Solution: Make CTRL-W gt move to next tabpage.
https://github.com/vim/vim/commit/72e83c1ae535e2ebc35b114d34d0a811eb62b068
Diffstat (limited to 'src/nvim/window.c')
-rw-r--r-- | src/nvim/window.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/nvim/window.c b/src/nvim/window.c index 4d105dd11e..d62510b951 100644 --- a/src/nvim/window.c +++ b/src/nvim/window.c @@ -528,6 +528,9 @@ wingotofile: cmdmod.tab = tabpage_index(curtab) + 1; nchar = xchar; goto wingotofile; + case 't': // CTRL-W gt: go to next tab page + goto_tabpage((int)Prenum); + break; case 'e': if (curwin->w_floating || !ui_has(kUIMultigrid)) { |