Safari style keybindings for tab navigation
From Vim Tips Wiki
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>