From ceb346e7c279b5d075827b4ff9e9e0be0c815193 Mon Sep 17 00:00:00 2001 From: "R. Steve McKown" Date: Sun, 17 Jan 2016 21:45:45 -0700 Subject: [PATCH] vim: add unite-tag plugin Plus a mapping ut to search tags with Unite! This is a bit time consuming in some cases. --- .gitmodules | 4 ++++ vim/bundle/unite-tag | 1 + vim/vimrc | 1 + 3 files changed, 6 insertions(+) create mode 160000 vim/bundle/unite-tag 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 -- 2.39.2