any ruby/vim gurus out there know how to fold only these:
modules
classes
methods
based on syntax method folding?
fold level won't cut it here since i might have
module A
module B
module C
module D
class C
def method
end
end
end
end
end
end
??
-a
on 22.11.2005 02:36
on 22.11.2005 08:46
On 11/21/05, Ara.T.Howard <ara.t.howard@noaa.gov> wrote: > > any ruby/vim gurus out there know how to fold only these: > > modules > classes > methods > > based on syntax method folding? > > fold level won't cut it here since i might have Not sure I understand the problem. Folding works for me. I have set foldmethod=syntax set foldnestmax=5 " usually 3, but more for this case
on 22.11.2005 08:50
Ara.T.Howard wrote: > any ruby/vim gurus out there know how to fold only these: > > modules > classes > methods > > based on syntax method folding? No, I don't know. > end > end > end > end Good question, though! Gavin
on 22.11.2005 09:59
On Tue, Nov 22, 2005 at 10:33:23AM +0900, Ara.T.Howard wrote: > any ruby/vim gurus out there know how to fold only these: > > modules > classes > methods This is exactly the problem I tried to solve in http://eigenclass.org/hiki.rb?Usable+Ruby+folding+for+Vim HTH
on 22.11.2005 15:57
On Tue, Nov 22, 2005 at 05:55:51PM +0900, Mauricio Fernández wrote: > On Tue, Nov 22, 2005 at 10:33:23AM +0900, Ara.T.Howard wrote: > > any ruby/vim gurus out there know how to fold only these: > > > > modules > > classes > > methods > > This is exactly the problem I tried to solve in > http://eigenclass.org/hiki.rb?Usable+Ruby+folding+for+Vim eigenclass.org has been down for ~4H this morning but it's back up, in case you still want to take a look.
on 22.11.2005 16:09
Mauricio Fernández wrote: > > eigenclass.org has been down for ~4H this morning but it's back up, in case > you still want to take a look. Gee, that looks awesome! Might be enough to get me to use folding... Gavin