aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-06-23 17:07:08 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-06-23 17:07:08 +1200
commite5a77b2ae47731663c955b6f3fbe803c82f4b85f (patch)
treefe850ef2126d2238e03272287cebc2025d767e35
parentUpdate fixed_join.vim plugin (diff)
downloaddotfiles-e5a77b2ae47731663c955b6f3fbe803c82f4b85f.tar.gz
dotfiles-e5a77b2ae47731663c955b6f3fbe803c82f4b85f.zip
Add tab cycle bindings
-rw-r--r--vim/vimrc3
1 files changed, 3 insertions, 0 deletions
diff --git a/vim/vimrc b/vim/vimrc
index 888542cf..ee01e3fb 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -192,6 +192,9 @@ nnoremap ]c :<C-U>cnext<CR>
" Cycle through location list items
nnoremap [l :<C-U>lprevious<CR>
nnoremap ]l :<C-U>lnext<CR>
+" Cycle through tabs
+nnoremap [t :<C-U>tabprevious<CR>
+nnoremap ]t :<C-U>tabnext<CR>
" Insert blank lines around current line
nmap [<Space> <Plug>PutBlankLinesAbove