Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am referring to this particular plugin http://vim.wikia.com/wiki/Open_file_under_cursor

I tried searching in vim site but i am not able to find it. Googled a lot as well , but no luck.

Can anyone point me to the correct link?

share|improve this question
can you please rephrase your question? – darryn.ten Dec 19 '12 at 7:58

closed as off topic by jrummell, JaredMcAteer, Dante is not a Geek, Wesley Murch, Ram kiran Dec 20 '12 at 3:42

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

This is not a plugin. This behavior is built into vim. Simply position your cursor over the filename and type gf.

If the current file has unsaved changes, you will see an error at the bottom of your window stating so, and the file will not open. Likewise if the file does not exist.

share|improve this answer
Thanks Jeff it worked. How do i switch back to the original file? – Kelly Dec 15 '12 at 6:00
Ctrl-O See also this answer, which says you can set hidden to jump back and forth between unsaved files. sounds useful. – Jeff Dec 15 '12 at 6:03
@Kelly, add set hidden to your ~/.vimrc, use <C-^> to switch to the previous buffer and, above all, read :h buffers. – romainl Dec 15 '12 at 6:20

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