Re: editing function argument lists

2007-02-09 Thread Tom Whittock
Hi Marc. The EasyHtml idea is an interesting one, I could take over an entire buffer (window) and put the list editing commands in there, but I am used to dealing with registers and motions in the standard vim sense; I'm not sure how well I would adapt to a new layout. I think I would also have

editing function argument lists

2007-02-08 Thread Tom Whittock
Hi Vim users. I have a question: Given a standard function call block of text: func(arg1, arg2, arg3); how do people here deal with editing the argument list efficiently? I'm looking to try to create a custom motion to allow me to move across and change arguments with a minimum number of

Re: editing function argument lists

2007-02-08 Thread Marc Weber
On Thu, Feb 08, 2007 at 09:56:52PM +, Tom Whittock wrote: Hi Vim users. I have a question: Given a standard function call block of text: func(arg1, arg2, arg3); how do people here deal with editing the argument list efficiently? I'm looking to try to create a custom motion to