diff options
author | Max Christian Pohle | 2018-03-21 22:50:46 +0100 |
---|---|---|
committer | Max Christian Pohle | 2018-03-21 22:50:46 +0100 |
commit | 11503dfcc23e5055d095463be1b35910ae932acf (patch) | |
tree | 92fc8fc4c1ee39ca8f72274a5bb9dcf8681c03bf | |
parent | e833449250e82ce7161fb312bef9fce594619337 (diff) | |
download | vim-karlmarks-11503dfcc23e5055d095463be1b35910ae932acf.tar.bz2 vim-karlmarks-11503dfcc23e5055d095463be1b35910ae932acf.zip |
Test: switch buffer with C-Pgup, args with S-Pgup
-rw-r--r-- | vimrc-full | 11 |
1 files changed, 10 insertions, 1 deletions
@@ -696,7 +696,7 @@ let g:signify_vcs_list = [ 'git' ] | " use signify only with git (improves sp | |||
696 | let g:signify_cursorhold_insert = 0 | 696 | let g:signify_cursorhold_insert = 0 |
697 | let g:signify_cursorhold_normal = 0 | 697 | let g:signify_cursorhold_normal = 0 |
698 | let g:signify_update_on_bufenter = 0 | 698 | let g:signify_update_on_bufenter = 0 |
699 | let g:signify_update_on_focusgained = 1 | 699 | let 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 |
702 | Plug 'jlanzarotta/bufexplorer' | 702 | Plug '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 | ||
738 | nnoremap <C-PageUp> :bn<CR> | ||
739 | nnoremap <C-PageDown> :bp<CR> | ||
740 | nnoremap <S-PageUp> :N<CR> | ||
741 | nnoremap <S-PageDown> :n<CR> | ||
742 | |||
743 | |||
735 | " Additional: ========================================. | 744 | " Additional: ========================================. |
736 | Plug 'sheerun/vim-polyglot' " better syntax highlighting/indentation for multiple languages | 745 | Plug 'sheerun/vim-polyglot' " better syntax highlighting/indentation for multiple languages |
737 | let g:javascript_conceal_function = "ƒ" | 746 | let g:javascript_conceal_function = "ƒ" |