Safari style keybindings for tab navigation
Talk0
1,599pages on
this wiki
this 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>