Re: Remove spaces and line breaks and make single line wihtout spaces

2012-07-20 Thread Jürgen Krämer
Hi, Am 20.07.2012 11:09 schrieb vicky b vickyb2...@gmail.com: HI, I dint find any specific solution for my problem even after much of googling i have following line ?xml version=1.0 encoding=UTF-8?SupportItem ItemInfo NameFirst Name/Name TypeINPUTEXT/Type Value/Value

Re: Remove spaces and line breaks and make single line wihtout spaces

2012-07-20 Thread Tony Mechelynck
On 20/07/12 09:19, vicky b wrote: HI, I dint find any specific solution for my problem even after much of googling i have following line ?xml version=1.0 encoding=UTF-8?SupportItem ItemInfo NameFirst Name/Name TypeINPUTEXT/Type Value/Value Mandatorytrue/Mandatory Description/Description

Re: Remove spaces and line breaks and make single line wihtout spaces

2012-07-20 Thread Dominique Pellé
Jürgen Krämer j...@habel.de wrote: Hi, Am 20.07.2012 11:09 schrieb vicky b vickyb2...@gmail.com: HI, I dint find any specific solution for my problem even after much of googling i have following line ?xml version=1.0 encoding=UTF-8?SupportItem ItemInfo NameFirst Name/Name

Re: Remove spaces and line breaks and make single line wihtout spaces

2012-07-20 Thread Jürgen Krämer
Am 20.07.2012 11:30 schrieb Dominique Pellé dominique.pe...@gmail.com: Jürgen Krämer j...@habel.de wrote: Hi, Am 20.07.2012 11:09 schrieb vicky b vickyb2...@gmail.com: HI, I dint find any specific solution for my problem even after much of googling i have following line

Re: Remove spaces and line breaks and make single line wihtout spaces

2012-07-20 Thread Nicolas Dermine
On 20 Jul 2012 11:30, Dominique Pellé dominique.pe...@gmail.com wrote: Jürgen Krämer j...@habel.de wrote: Hi, Am 20.07.2012 11:09 schrieb vicky b vickyb2...@gmail.com: HI, I dint find any specific solution for my problem even after much of googling i have following line

Re: Remove spaces and line breaks and make single line wihtout spaces

2012-07-20 Thread vicky b
Did that but still spaces in between .I have higlighted one of the spaces. ?xml version=1.0 encoding=UTF-8?SupportItem ItemInfo NameFirst Name/Name TypeINPUTEXT/Type Value/Value Mandatorytrue/Mandatory Description/Description ImagePath/ImagePath MaxLength100/MaxLength /ItemInfo

Re: Remove spaces and line breaks and make single line wihtout spaces

2012-07-20 Thread Asis Hallab
2012/7/20 vicky b vickyb2...@gmail.com Did that but still spaces in between .I have higlighted one of the spaces. Try either :%s/\s*\n\s*//g or :%j and subsequently :%s#\M\s\+##g Cheers! ?xml version=1.0 encoding=UTF-8?SupportItem ItemInfo NameFirst Name/Name TypeINPUTEXT/Type

Re: Remove spaces and line breaks and make single line wihtout spaces

2012-07-20 Thread Bee
Am 20.07.2012 11:09 schrieb vicky b vickyb2...@gmail.com: Did that but still spaces in between . ?xml version=1.0 encoding=UTF-8?SupportItem ItemInfo NameFirst Name/Name TypeINPUTEXT/Type Value/Value Mandatorytrue/Mandatory Description/Description ImagePath/ImagePath

Re: esc and cursor position

2012-07-20 Thread Arvid Warnecke
Hi, On Fri, Jul 20, 2012 at 01:45:07AM -0700, sinbad wrote: why does the esc takes the cursor a position back. is there any specific for this ? Do you mean and the end of a line? You wrote something, hit esc and the cursor jumps back one position? I believe that is, because the position the

Re: Remove spaces and line breaks and make single line wihtout spaces

2012-07-20 Thread Andy Spencer
On 2012-07-20 12:49, vicky b wrote: ... i want to have it as below all line merged as single line and no spaces at all ?xmlversion=1.0encoding=UTF-8?SupportItemItemInfo... You can select the text and use gJ, which acts like J but doesn't insert spaces between lines. It won't remove the

Re: Remove spaces and line breaks and make single line wihtout spaces

2012-07-20 Thread Gary Johnson
On 2012-07-20, vicky b wrote: On Fri, Jul 20, 2012 at 3:31 PM, Nicolas Dermine wrote: On 20 Jul 2012 11:30, Dominique Pell wrote: J rgen Kr mer wrote: Hi, Am 20.07.2012 11:09 schrieb vicky b: HI, I dint find any specific solution for my problem even after

Re: esc and cursor position

2012-07-20 Thread Christian Brabandt
Hi sinbad! On Fr, 20 Jul 2012, sinbad wrote: why does the esc takes the cursor a position back. is there any specific for this ? That is how traditional Vi has always behaved. regards, Christian -- -- You received this message from the vim_use maillist. Do not top-post! Type your reply

Re: Remove spaces and line breaks and make single line wihtout spaces

2012-07-20 Thread BPJ
On 2012-07-20 11:23, Tony Mechelynck wrote: You shouldn't have used Google; use the help (Vim is the only program I know which has a help worth using): see Agreed, but you still often need Google to find out where to look in the help system! :( /bpj -- You received this message from the

Lua setup for vim

2012-07-20 Thread meino . cramer
Hi, what scripts and settings are recommended for using vim to programm in lua? Thank you very much in advance for any help! Have a nice weekend! Best regards, mcc -- You received this message from the vim_use maillist. Do not top-post! Type your reply below the text you are replying

Re: I want write vim script

2012-07-20 Thread Marc Weber
Excerpts from 王军's message of Sat Jul 21 06:50:51 +0200 2012: I want study and wirte vim script,But I find docments are very simple,where there are docment in detai? :h /script n n n (repeat n till you find the line |usr_41.txt| Write a Vim script g ctrl-] within | .. | jumps to

Re: insert mode map multiple spaces

2012-07-20 Thread sinbad
On Jul 19, 3:11 am, Christian Brabandt cbli...@256bit.org wrote: On Thu, July 19, 2012 08:20, sinbad wrote: with the following insert mode mapping, if i type testspaceoe, i'll get double space between test  one, can i change the mapping to always have atmost one space inoremap oe

Re: Lua setup for vim

2012-07-20 Thread Tony Mechelynck
On 21/07/12 05:41, meino.cra...@gmx.de wrote: Hi, what scripts and settings are recommended for using vim to programm in lua? Thank you very much in advance for any help! Have a nice weekend! Best regards, mcc Well, first I suppose you'll want a Vim with lua interpreter:

Re: I want write vim script

2012-07-20 Thread Tony Mechelynck
On 21/07/12 06:58, Marc Weber wrote: Excerpts from 王军's message of Sat Jul 21 06:50:51 +0200 2012: I want study and wirte vim script,But I find docments are very simple,where there are docment in detai? :h /script n n n (repeat n till you find the line |usr_41.txt| Write a Vim