XVimProject / XVim2

Vim key-bindings for Xcode 9
MIT License
2.31k stars 181 forks source link

Small Tabs Switching #385

Closed hamza72x closed 2 years ago

hamza72x commented 2 years ago

Hey!

Jazakallahu Khairan for the project.

How to switch between GREEN colored tabs? Not the RED color one.

tabNext and tabprevious moves tab of RED area.

Currently using master branch. Big Sur, Xcode 12.

image

r-plus commented 2 years ago

Probably XVim not support it for now.

Cmd + Shift + ] or [ key shortcuts for that purpose are supported widely on macOS.

NOTE: I tried :map gt <M-S-]> key mapping but not work.

hamza72x commented 2 years ago

Probably XVim not support it for now.

Cmd + Shift + ] or [ key shortcuts for that purpose are supported widely on macOS.

NOTE: I tried :map gt <M-S-]> key mapping but not work.

Hmmm.

TMTBO commented 2 years ago
nnoremap sn :xcmenucmd Show Next Tab<CR>
nnoremap sp :xcmenucmd Show Previous Tab<CR>

Maybe this is what you need.