vote up 1 vote down star

Hello there,

Is there a way to go the end of a Ruby block using vim? For example

module SomeModule

   # <Supposing that the cursor is HERE>
  def some_method
  end

end

I want to go from where the cursor is, to the end of the block with one command, is that possible?

I've read this documentation, but it doesn't seem to work on .rb files, I've read in some places that it only works on C (haven't tried though).

Thanks in advance.

flag
Not only C, but as far as I'm aware, only with C-like syntax, (C, C++, java, C#, etc), ie. {} marking code blocks – Matthew Scharley Aug 14 at 2:30

3 Answers

vote up 1 vote down
%

It works with most languages where it's clear that your cursor is on or near a block marker.

link|flag
This doesn't seem to work for Ruby. – Mark A. Nicolosi Aug 14 at 3:26
That would work if and only if the cursor is either on "module SomeModule" or the "end" of that block. Not when the cursor is inside it. – Roman Gonzalez Aug 14 at 4:01
It works perfectly fine on my installation of Vim7.2. On both def and module. – greyfade Aug 14 at 5:36
Of course, the other block navigation commands should also work. If they're not working, check your Ruby ftplugin. – greyfade Aug 14 at 9:05
I forgot to mention that I'm working on a macvim environment... probably the ftplugin is outdated, I'll check this out. – Roman Gonzalez Aug 14 at 17:38
vote up 1 vote down

Looks like there is an official package at rubyforge that has some support for this:

The Ruby ftplugin now includes Ruby specific implementations for the [[, ]], [], ][, [m, ]m, [M, and ]M normal mode commands. These allow you to move to move quickly between module, class and method declarations.

Edit: The README says that these files are included in the default VIM distro but they don't work for me in GVIM on Windows, '{' and '}' seem to work on vim under Linux

link|flag
vote up -1 vote down

Try this - http://www.vim.org/scripts/script.php?script%5Fid=303 (Disclaimer: untested)

link|flag

Your Answer

Get an OpenID
or

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