aboutsummaryrefslogtreecommitdiff
path: root/vim/config/buffers.vim
diff options
context:
space:
mode:
Diffstat (limited to 'vim/config/buffers.vim')
-rw-r--r--vim/config/buffers.vim14
1 files changed, 0 insertions, 14 deletions
diff --git a/vim/config/buffers.vim b/vim/config/buffers.vim
deleted file mode 100644
index b5a0151b..00000000
--- a/vim/config/buffers.vim
+++ /dev/null
@@ -1,14 +0,0 @@
-" Allow jumping between windows and tabs to find an open instance of a given
-" buffer with :sbuffer.
-set switchbuf=useopen
-if v:version >= 701
- set switchbuf+=usetab
-endif
-
-" Cycle back and forth through buffers.
-nnoremap <silent>
- \ [b
- \ :<C-U>bprevious<CR>
-nnoremap <silent>
- \ ]b
- \ :<C-U>bnext<CR>