I've started programming Ruby on Rails through VIM. I know this can be don't but I don't know how: How do I open up a new instance of vim to the file that contains the {function|class|constant|whatever} under the cursor? What do I install? How do I use it?
|
|
|
You can use
Exuberant Ctags (available as For Rails, there is also |
|||||
|
|
I don't think Vim will open the containing file based on a function; I've been using it a long time and don't remember seeing that. That's more like what an IDE would do, and Vim isn't an IDE, it's a very powerful text editor. Vim can open a file if the path to the file is under the cursor. See Vim's built in help for It can also search all the files based on a string, and show you where the string is found and open that file. See the help for If the cursor is over a function name, you could use You might want to look at the taglist plugin for Vim as it will provide you a list of all functions and labels in the open files, making it easy to jump around. It requires ctags, but that's usually an easy install. |
||||
|
|