From: Andrew Walrond Date: 2005-04-27T19:48:20+09:00 Subject: Re: Folding editor for ruby code browsing Hi Doug, On Wednesday 27 April 2005 10:52, Doug Kearns wrote: > > You can send them to me, the vim-ruby-devel@rubyforge.org list, or enter > them in the bug tracker at http://rubyforge.org/projects/vim-ruby - I'm > not too fussed. > > > Have you tried emailing the maintainer? Know if he/she is still > > active? > > It's rumoured that he is... ;-) > ;) This one I found breaks the syntax and folding mechanism: variable = if something then value1 elsif something then value2 else value3 end It's not a nice construct, but xemacs and Kate handle it ok, so I guess it would be nice if vim did too. I had to replace it with if something then variable=value1 elsif something then variable=value2 else variable=value3 end which is obviously handled. There was another ... can't remember what it was right now though. It'll come to me... Andrew