aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--vim/vimrc6
1 files changed, 3 insertions, 3 deletions
diff --git a/vim/vimrc b/vim/vimrc
index c1d44fb2..0edbcd63 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -170,6 +170,9 @@ vnoremap <silent> <C-L> :<C-U>nohlsearch<CR>gv<C-L>
inoremap <Plug>(InsertCancel) <Esc>u
imap <C-C> <Plug>(InsertCancel)
+" Map double Ctrl-K in insert mode to search digraph names
+imap <C-K><C-K> <Plug>(DigraphSearch)
+
" Remap normal space to scroll down a page, backspace up a page
nnoremap <Space> <C-F>
nnoremap <BS> <C-B>
@@ -180,9 +183,6 @@ if v:version >= 700
xnoremap <silent> & :&&<CR>
endif
-" Double CTRL-K in insert mode searches digraph names
-imap <C-K><C-K> <Plug>(DigraphSearch)
-
" Cycle through argument list
nnoremap [a :<C-U>previous<CR>
nnoremap ]a :<C-U>next<CR>