From: Ned Konz Date: 2002-07-06T08:15:02+09:00 Subject: Re: VIM/ruby On Friday 05 July 2002 03:11 pm, Steve Tuckner wrote: > I am want to build a class or set of classes to use in VIM so that > I can more easily script vim/ruby. The problem with the current set > of classes is that I want VIM::Buffer, VIM::Window, and the buffer > lists to act > > just like arrays so that I could do the following: > : ruby $curbuf.sort {|a,b| a.to_i <=> b.to_i} Or you could just mix in each() to VIM::Buffer and VIM::Window... now you can sort them, etc. ruby <