aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitmodules3
m---------vim/bundle/digraph_search0
m---------vim/bundle/insert_cancel0
-rw-r--r--vim/vimrc3
4 files changed, 6 insertions, 0 deletions
diff --git a/.gitmodules b/.gitmodules
index af225c02..e52d990e 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -68,3 +68,6 @@
[submodule "vim/bundle/surround"]
path = vim/bundle/surround
url = https://sanctum.geek.nz/clone/vim-surround.git
+[submodule "vim/bundle/digraph_search"]
+ path = vim/bundle/digraph_search
+ url = https://sanctum.geek.nz/code/vim-digraph-search.git
diff --git a/vim/bundle/digraph_search b/vim/bundle/digraph_search
new file mode 160000
+Subproject ee33e50228cedbcf973728baa4c5d46c83aee1c
diff --git a/vim/bundle/insert_cancel b/vim/bundle/insert_cancel
-Subproject a2308ef31dcfad2bc01cac0b9d98571230a1b10
+Subproject af423a79c9689531ec71658c2dc51804ed91a8a
diff --git a/vim/vimrc b/vim/vimrc
index 5381994a..c1d44fb2 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -180,6 +180,9 @@ 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>