I usually edit RUBY files in VIM. I want the methods(def...end) to fold. Could you please help me define the fold syntax?
feedback
|
|
Assuming you've already got Ruby syntax highlighting setup and working, use the
This will give you folds on | |||
|
feedback
|
|
I like to have everything fold by default, and this here will let you tweak a whole bunch of things related to folding. I do mostly Perl and C++ coding and I find it works well with that. Folding and unfolding is mapped to space key. Here's what I have going in my vimrc:
| |||
|
feedback
|
|
I think you put the cursor on the first line then zfnj where n is the number of lines to fold (so to fold 10 lines you woudl zf10j). I think it will also recognize syntax so like in PHP I do zf} to fold to the closing bracket. I don't code in Ruby, so I don't know if this works in Ruby. From then on, to toggle, zo will open and zc will close. | |||
|
feedback
|
|
site appears to be down, here's a google cache link: | ||||
|
feedback
|