Vim Tips Wiki
Advertisement
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
Tip 1309 Printable Monobook Previous Next

created 2006 · complexity basic · version 6.0


Tab navigation for those of us using Macs, and used to the way Safari does it. Inspired by VimTip1221.

Add the following to your .gvimrc, restart gvim/vim7.0 and use the following keys:

  • <apple-t> : New Tab
  • <apple-]> : Next Tab
  • <apple-[> : Previous Tab
"custom tab stuff
" tab navigation like safari
" idea adopted from: [[VimTip1221]]
:nmap <D-[> :tabprevious<CR>
:nmap <D-]> :tabnext<CR>
:map <D-[> :tabprevious<CR>
:map <D-]> :tabnext<CR>
:imap <D-[> <Esc>:tabprevious<CR>i
:imap <D-]> <Esc>:tabnext<CR>i
:nmap <D-t> :tabnew<CR>
:imap <D-t> <Esc>:tabnew<CR>

Comments

Advertisement