aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-07-14 18:32:01 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-07-14 18:32:01 +1200
commit200521c51da45fc6aafcf18a748330c72f67937b (patch)
tree4a5c8044b4d8870235d43478913374800ace150a
parentAdd and configure digraph_search.vim plugin (diff)
downloaddotfiles-200521c51da45fc6aafcf18a748330c72f67937b.tar.gz
dotfiles-200521c51da45fc6aafcf18a748330c72f67937b.zip
Adjust mapping comment for consistency
-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>