]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
vimrc: Don't use abbreviated commands (:b -> :buffer).
authorSimon Ruderich <simon@ruderich.org>
Sat, 14 Jan 2012 20:11:35 +0000 (21:11 +0100)
committerSimon Ruderich <simon@ruderich.org>
Sat, 14 Jan 2012 20:11:35 +0000 (21:11 +0100)
vimrc

diff --git a/vimrc b/vimrc
index 28803a1330197303f73ec91747ed7ea8688ef231..fecbf915c2e426b7bda41f85ec424e4ea34e1e45 100644 (file)
--- a/vimrc
+++ b/vimrc
@@ -245,16 +245,16 @@ nnoremap <silent> gb :bnext<CR>
 nnoremap <silent> gB :bprev<CR>
 
 " Fast access to buffers.
-nnoremap <silent> <Leader>1 :1b<CR>
-nnoremap <silent> <Leader>2 :2b<CR>
-nnoremap <silent> <Leader>3 :3b<CR>
-nnoremap <silent> <Leader>4 :4b<CR>
-nnoremap <silent> <Leader>5 :5b<CR>
-nnoremap <silent> <Leader>6 :6b<CR>
-nnoremap <silent> <Leader>7 :7b<CR>
-nnoremap <silent> <Leader>8 :8b<CR>
-nnoremap <silent> <Leader>9 :9b<CR>
-nnoremap <silent> <Leader>0 :10b<CR>
+nnoremap <silent> <Leader>1 :1buffer<CR>
+nnoremap <silent> <Leader>2 :2buffer<CR>
+nnoremap <silent> <Leader>3 :3buffer<CR>
+nnoremap <silent> <Leader>4 :4buffer<CR>
+nnoremap <silent> <Leader>5 :5buffer<CR>
+nnoremap <silent> <Leader>6 :6buffer<CR>
+nnoremap <silent> <Leader>7 :7buffer<CR>
+nnoremap <silent> <Leader>8 :8buffer<CR>
+nnoremap <silent> <Leader>9 :9buffer<CR>
+nnoremap <silent> <Leader>0 :10buffer<CR>
 
 " Make last active window the only window. Similar to <C-W> o.
 nnoremap <C-W>O <C-W>p<C-W>o