From 3390ca455e20360dbd662c2f6ba02015a026c347 Mon Sep 17 00:00:00 2001 From: clint Date: Mon, 22 Aug 2022 21:59:38 -0500 Subject: [PATCH] vim buffer maps --- vimrc/.vimrc | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/vimrc/.vimrc b/vimrc/.vimrc index deb3e44..fbe4964 100644 --- a/vimrc/.vimrc +++ b/vimrc/.vimrc @@ -40,3 +40,9 @@ vnoremap zf " F9 execute current Python file autocmd FileType python map :w:exec '!clear;python' shellescape(@%, 1) autocmd FileType python imap :w:exec '!clear;python' shellescape(@%, 1) + +" Cycle through buffers +map [b :bp +map ]b :bn +map db :bd +