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.