From: R. Steve McKown Date: Mon, 18 Jan 2016 04:45:45 +0000 (-0700) Subject: vim: add unite-tag plugin X-Git-Url: https://oss.titaniummirror.com/gitweb?a=commitdiff_plain;h=ceb346e7c279b5d075827b4ff9e9e0be0c815193;p=smckown%2Fdotfiles.git vim: add unite-tag plugin Plus a mapping ut to search tags with Unite! This is a bit time consuming in some cases. --- diff --git a/.gitmodules b/.gitmodules index f7a416b..48091ce 100644 --- a/.gitmodules +++ b/.gitmodules @@ -178,3 +178,7 @@ 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 index 0000000..269244e --- /dev/null +++ b/vim/bundle/unite-tag @@ -0,0 +1 @@ +Subproject commit 269244ea5e580182aa7827f8b969e7a7594049be diff --git a/vim/vimrc b/vim/vimrc index 3206b20..4c3e4fd 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -425,6 +425,7 @@ nnoremap ub :Unite -no-split -start-insert -buffer-name=buffer buff nnoremap uo :Unite -no-split -start-insert -buffer-name=outline outline nnoremap ul :Unite -no-split -start-insert -buffer-name=lines line nnoremap uc :Unite -no-split -buffer-name=quicklist qf +nnoremap ut :Unite -no-split -start-insert -buffer-name=tags tag nnoremap : :Unite -start-insert -direction=dynamicbottom -buffer-name=command history/command nnoremap / :Unite -start-insert -direction=dynamicbottom -buffer-name=search history/search