Skip to content

Latest commit

 

History

History
19 lines (10 loc) · 518 Bytes

README.md

File metadata and controls

19 lines (10 loc) · 518 Bytes

unite-tselect

Introduction

unite-tselect is a unite.vim source plugin for selecting tags, which provides a similar functionality as :tselect command.

Usage

To search tags for <keyword>, execute

:Unite tselect:<keyword>

If you want to remap g<C-]> and g], copy the following lines into your vimrc.

nnoremap g<C-]> :<C-u>Unite -immediately tselect:<C-r>=expand('<cword>')<CR><CR>
nnoremap g] :<C-u>Unite tselect:<C-r>=expand('<cword>')<CR><CR>