Recently I've been trying my hand at using vim instead of TextMate and one of the features that I've missed most in VIM is TextMate's jump to method function (CMD + Shift + T for those who don't know). From looking around I havn't seen any particular way to emulate this functionality and was wondering if anyone here has had experience with this sort of functionality in VIM.

Thanks in advance for any answers

Patrick

link|improve this question

50% accept rate
Some details of what this requested functionality does might help us.... – Tim Oct 24 '09 at 15:58
No idea but +1 and a gold star since I'm always up for learning Vim tricks. – JasonSmith Oct 24 '09 at 15:58
basically when you execute this shortcut textmate gives you a pane with a list of all the functions in the file you currently have open. Here’s a screenshot of what it looks like tinyurl.com/yjkh5j7 The search box at the top provides a reducing search but that's not as important a function – Patrick O'Doherty Oct 24 '09 at 16:08
We need something like FuzzyFinder's :FufTag but then only for the current buffer. I've been looking for the same thing but couldn't find anything :( – Jonas Wouters Mar 9 '10 at 9:42
Would love to have something like this. TagList comes as close as it gets but it still lacks support for CSS (not TagList's fault per-se, but rather Exuberant Ctags fault). I'd love to have something that works as nicely as the CommandT plugin, but just for symbols. Guess I could do it if I had the time and the knowledge, but VimScript is one of my blind points. – dguaraglia Feb 17 '11 at 10:54
feedback

8 Answers

up vote 3 down vote accepted

You're looking for vim's 'tags' functionality ... I answered a similar question about tags here: http://stackoverflow.com/questions/1580252/how-to-implement-own-tag-jump-in-vim-with-ctrl/

link|improve this answer
feedback

This functionality has been implemented in fuzzyfinder using :FufBufferTag. See the ticket

link|improve this answer
feedback

I'd love to hear good suggestions as I use Vim all the time but haven't used TextMate. I do the following things which slightly overlap.

  1. Search for d-e-f-space-<first few letters of function name>. So to go to function foo (in Python or Ruby, and within the same file of course), I type /def fo and I'm there. I also have incremental search enabled in Vim.

  2. Use marks for functions which I visit often. So I'll ma at the function definition and then 'a back to it later. I know it's not function definitions but it is a crutch.

link|improve this answer
wasn’t aware of vim's marking functionality. it's great consistently finding new things in vim that can really speed up your workflow – Patrick O'Doherty Oct 24 '09 at 16:10
feedback

you can create a tags file with ctags http://ctags.sourceforge.net/ basically $ctags -R Then once you're in vim :set tags=/path/to/tagsfile

this will also be any tag so not just class names, methods, etc. In normal mode ctrl-] on the method/class/ and it will jump to that position.

You can also use the taglist plugin which will display current tags in a side window. ctags

link|improve this answer
feedback

I had pretty much the same problem and I found a quick and dirty solution (paste this in your .vimrc and call by typing :LS)

function! s:ListFunctions()
vimgrep /function/j %
copen
endfunction
command! -bar -narg=0 LS call s:ListFunctions()

If you require more functionality then Exuberant Ctags will do better for you

link|improve this answer
thanks that worked really well for what I was trying to accomplish. – Patrick O'Doherty Oct 26 '09 at 21:08
feedback

I'm using CommandT for file searching, then / to search for a particular function. However, the real issue is with CSS. Cmd Shift T in Textmate enable quick jumps to a particular CSS class, and that is a huge time-saver.

CTags doesn't support CSS parsing, unless you re-compile with a patch (found via google), but I'm not even sure if we can do fuzzy searching for CSS classes like in Textmate. I really miss the Cmd Shift T feature.

link|improve this answer
feedback

I've written a TextMate Bundle command (you can easily assign it to Ctrl+] for example) that lookup for the definition of the class or method under the caret and displays it in a tooltip, along with the file name and the line where it was find.

Check it out: Add a shortcut to TextMate to lookup a class or method definition in a tooltip
Hope you'll find it useful!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.