From 11503dfcc23e5055d095463be1b35910ae932acf Mon Sep 17 00:00:00 2001
From: Max Christian Pohle
Date: Wed, 21 Mar 2018 22:50:46 +0100
Subject: Test: switch buffer with C-Pgup, args with S-Pgup

---
 vimrc-full | 11 ++++++++++-
 1 file changed, 10 insertions(+), 1 deletion(-)

(limited to 'vimrc-full')

diff --git a/vimrc-full b/vimrc-full
index ec4f3db..819222f 100644
--- a/vimrc-full
+++ b/vimrc-full
@@ -696,7 +696,7 @@ let g:signify_vcs_list = [ 'git' ]    | " use signify only with git (improves sp
 let g:signify_cursorhold_insert     = 0
 let g:signify_cursorhold_normal     = 0
 let g:signify_update_on_bufenter    = 0
-let g:signify_update_on_focusgained = 1
+let g:signify_update_on_focusgained = 0
 
 " BUFEXPLORER:                        | " a buffer to list all buffers has the advantage, that default /-searches work in there
 Plug 'jlanzarotta/bufexplorer'
@@ -732,6 +732,15 @@ nnoremap <F4>
 "       \ if (winnr("$") == 1 && exists("b:NERDTree") && b:NERDTree.isTabTree()) | q | endif
 "
 
+
+" map CTRL-PageUp/Down to next/previous buffer
+" and Shift-PageUp/Down to next/previous arglist file
+nnoremap <C-PageUp> :bn<CR>
+nnoremap <C-PageDown> :bp<CR>
+nnoremap <S-PageUp> :N<CR>
+nnoremap <S-PageDown> :n<CR>
+
+
 " Additional: ========================================.
 Plug 'sheerun/vim-polyglot'                   " better syntax highlighting/indentation for multiple languages
 let g:javascript_conceal_function             = "ƒ"
-- 
cgit v1.2.3