]> oss.titaniummirror.com Git - smckown/dotfiles.git/commitdiff
vim: add unite-tag plugin
authorR. Steve McKown <rsmckown@gmail.com>
Mon, 18 Jan 2016 04:45:45 +0000 (21:45 -0700)
committerR. Steve McKown <rsmckown@gmail.com>
Mon, 18 Jan 2016 04:45:45 +0000 (21:45 -0700)
Plus a mapping <leader>ut to search tags with Unite!  This is a bit time
consuming in some cases.

.gitmodules
vim/bundle/unite-tag [new submodule]
vim/vimrc

index f7a416ba4dfd915c46f63cd0b9ead728fa642a2a..48091ce1b99359cdfdd8538f198b2f8016bb7597 100644 (file)
        path = vim/bundle/unite-qf
        url = https://github.com/sgur/unite-qf.git
        ignore = untracked
+[submodule "vim/bundle/unite-tag"]
+       path = vim/bundle/unite-tag
+       url = https://github.com/tsukkee/unite-tag.git
+       ignore = untracked
diff --git a/vim/bundle/unite-tag b/vim/bundle/unite-tag
new file mode 160000 (submodule)
index 0000000..269244e
--- /dev/null
@@ -0,0 +1 @@
+Subproject commit 269244ea5e580182aa7827f8b969e7a7594049be
index 3206b2013604f5fe104bccc4d296680f908c6f04..4c3e4fd1eecd4c72d44e7b8118e90559957569ab 100644 (file)
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -425,6 +425,7 @@ nnoremap <leader>ub :<C-u>Unite -no-split -start-insert -buffer-name=buffer buff
 nnoremap <leader>uo :<C-u>Unite -no-split -start-insert -buffer-name=outline outline<cr>
 nnoremap <leader>ul :<C-u>Unite -no-split -start-insert -buffer-name=lines line<cr>
 nnoremap <leader>uc :<C-u>Unite -no-split -buffer-name=quicklist qf<cr>
+nnoremap <leader>ut :<C-u>Unite -no-split -start-insert -buffer-name=tags tag<cr>
 nnoremap <leader>: :<C-u>Unite -start-insert -direction=dynamicbottom -buffer-name=command history/command<cr>
 nnoremap <leader>/ :<C-u>Unite -start-insert -direction=dynamicbottom -buffer-name=search history/search<cr>