Reputation: 3564
I want to use ShiftTab to do the opposite of Tab so that I can move forward and backward in the jump list.
I cannot just map <Shift>^I to ^O.
<Shift>^I
^O
Upvotes: 0
Views: 285
The correct mapping is:
:nnoremap <S-Tab> <c-o>
Upvotes: 1