aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-06-02 18:17:55 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-06-02 18:17:55 +1200
commita8d03cf95cf37837743f2c271dc8efd071fc0b67 (patch)
tree9f263b852459df5d0324ca317b8adffa73e0eb81
parentUpgrade mail_mutt.vim plugin to v0.2.0 (diff)
downloaddotfiles-a8d03cf95cf37837743f2c271dc8efd071fc0b67.tar.gz
dotfiles-a8d03cf95cf37837743f2c271dc8efd071fc0b67.zip
Use full commands in buffer cycle mappings
-rw-r--r--vim/config/buffers.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/vim/config/buffers.vim b/vim/config/buffers.vim
index ddd40b9f..b5a0151b 100644
--- a/vim/config/buffers.vim
+++ b/vim/config/buffers.vim
@@ -8,7 +8,7 @@ endif
" Cycle back and forth through buffers.
nnoremap <silent>
\ [b
- \ :<C-U>bp<CR>
+ \ :<C-U>bprevious<CR>
nnoremap <silent>
\ ]b
- \ :<C-U>bn<CR>
+ \ :<C-U>bnext<CR>