vote up 0 vote down star
1

Hi guys,

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

flag

25% accept rate
Some details of what this requested functionality does might help us.... – Tim Oct 24 at 15:58
No idea but +1 and a gold star since I'm always up for learning Vim tricks. – jhs Oct 24 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 at 16:08

5 Answers

vote up 1 vote down

Try to look at this:

http://stackoverflow.com/questions/635770/jump-to-function-definition-in-vim

link|flag
vote up 0 vote down

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|flag
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 at 16:10
vote up 1 vote down

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|flag
vote up 0 vote down

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|flag
vote up 0 vote down

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|flag
thanks that worked really well for what I was trying to accomplish. – Patrick O'Doherty Oct 26 at 21:08

Your Answer

Get an OpenID
or

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