Skip to content

Latest commit

 

History

History
24 lines (13 loc) · 697 Bytes

README.md

File metadata and controls

24 lines (13 loc) · 697 Bytes

unite-tselect2

Introduction

This is a fork of unite-tselect.

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>

To make a command that behaves like :tselect:

command! -nargs=* Tselect Unite tselect:<args>