Reputation: 2409
So using vim in terminal, I can use ctrl+pgdown, ctrl+pgup to navigate between vim tab pages. However I lose these keybindings if I open the files inside tmux.
What is the command to do this inside tmux?
Upvotes: 2
Views: 821
Reputation: 15400
You can use vim's standard gt
and gT
mappings for changing next/prev tab.
Upvotes: 5