aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Christian Pohle2018-03-21 22:50:46 +0100
committerMax Christian Pohle2018-03-21 22:50:46 +0100
commit11503dfcc23e5055d095463be1b35910ae932acf (patch)
tree92fc8fc4c1ee39ca8f72274a5bb9dcf8681c03bf
parente833449250e82ce7161fb312bef9fce594619337 (diff)
downloadvim-11503dfcc23e5055d095463be1b35910ae932acf.tar.bz2
vim-11503dfcc23e5055d095463be1b35910ae932acf.zip
Test: switch buffer with C-Pgup, args with S-Pgup
-rw-r--r--vimrc-full11
1 files changed, 10 insertions, 1 deletions
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
696let g:signify_cursorhold_insert = 0 696let g:signify_cursorhold_insert = 0
697let g:signify_cursorhold_normal = 0 697let g:signify_cursorhold_normal = 0
698let g:signify_update_on_bufenter = 0 698let g:signify_update_on_bufenter = 0
699let g:signify_update_on_focusgained = 1 699let g:signify_update_on_focusgained = 0
700 700
701" BUFEXPLORER: | " a buffer to list all buffers has the advantage, that default /-searches work in there 701" BUFEXPLORER: | " a buffer to list all buffers has the advantage, that default /-searches work in there
702Plug 'jlanzarotta/bufexplorer' 702Plug 'jlanzarotta/bufexplorer'
@@ -732,6 +732,15 @@ nnoremap <F4>
732" \ if (winnr("$") == 1 && exists("b:NERDTree") && b:NERDTree.isTabTree()) | q | endif 732" \ if (winnr("$") == 1 && exists("b:NERDTree") && b:NERDTree.isTabTree()) | q | endif
733" 733"
734 734
735
736" map CTRL-PageUp/Down to next/previous buffer
737" and Shift-PageUp/Down to next/previous arglist file
738nnoremap <C-PageUp> :bn<CR>
739nnoremap <C-PageDown> :bp<CR>
740nnoremap <S-PageUp> :N<CR>
741nnoremap <S-PageDown> :n<CR>
742
743
735" Additional: ========================================. 744" Additional: ========================================.
736Plug 'sheerun/vim-polyglot' " better syntax highlighting/indentation for multiple languages 745Plug 'sheerun/vim-polyglot' " better syntax highlighting/indentation for multiple languages
737let g:javascript_conceal_function = "ƒ" 746let g:javascript_conceal_function = "ƒ"
..