vim edit help

2013-02-28 Thread vicky b
HI All, I have text in below format var illness = new Array("tvlPlyCp","tvlPlcyCertID","tvlShdIt","tvlRepMedEi","tvlMdRp","tvlRrepdsc","tvlPolRep") i need to convert it var illness = new dojox.collections.ArrayList(); illness.add("tvlPlyCp"); illness.add("tvlPlcyCertID") illness.add("tvlShdIt")

Re: vim edit help

2013-02-28 Thread Ben Fritz
On Thursday, February 28, 2013 12:33:23 PM UTC-6, vicky b wrote: > HI All, > > >  I have text in below format  > var illness = new > Array("tvlPlyCp","tvlPlcyCertID","tvlShdIt","tvlRepMedEi","tvlMdRp","tvlRrepdsc","tvlPolRep") > > > > > i need to convert it  > > > > var illness = new dojo

Re: vim edit help

2013-02-28 Thread vicky b
Can you please explain more on this section /Array ciwdojox.collections.ArrayList On Fri, Mar 1, 2013 at 12:17 AM, Ben Fritz wrote: > On Thursday, February 28, 2013 12:33:23 PM UTC-6, vicky b wrote: > > HI All, > > > > > > I have text in below format > > var illness = new > Array("tvlPlyCp",

Re: vim edit help

2013-02-28 Thread vicky b
actuall i have to 11 such variables can you please help var flightDelay = new Array("tvlPlyCp","tvlPlcyCertID","tvlShdIt","tvlConfArlSupId","tvlConfArlcompaid","tvlRepeei","tvlPolRep"); var baggageDelay = new Array("tvlPlyCp","tvlPlcyCertID","tvlShdIt","tvlProIr","tvlConfArlcompaid","tvlRepeei","t

Re: vim edit help

2013-02-28 Thread Benji Fisher
First, the explanation. See the references that Ben Fritz already listed. /Array: Search for the text "Array". Do not type literally: it means hit Enter or Return. ciw: Change the word (text object). You could also use cw or ce (change word or change to end) dojox.collections.ArrayList: Th

Re: vim edit help

2013-03-01 Thread Marc Weber
Excerpts from vicky b's message of Thu Feb 28 19:33:23 +0100 2013: > I have text in below format > var illness = new > Array("tvlPlyCp","tvlPlcyCertID","tvlShdIt","tvlRepMedEi","tvlMdRp","tvlRrepdsc","tvlPolRep") > > i need to convert it > > var illness = new dojox.collections.ArrayList(); > ill