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" : > > HI, > > I dint find any specific solution for my problem even after much of googling > > i have following line > > > > First Name > INPUTEXT > > true > > > 100 > > > > i want to have it as below all line merged as single line and no spaces

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 First Name INPUTEXT true 100 i want to have it as below all line merged as single line and no spaces at all FirstNameINPUTEXTtrue100 -- /*Thank

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

2012-07-20 Thread Dominique Pellé
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 much of >> googling >> >> i have following line >> >> >> >> First Name >> INPUTEXT >> >> true >> >> >> 100 >> >> >> >> i want to have it a

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é" : > > 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 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é" 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 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. First Name INPUTEXT true 100 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" : > > > > > >> > >

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

2012-07-20 Thread Asis Hallab
2012/7/20 vicky b > 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! > > First Name INPUTEXT > true > > 100 > On Fri, Jul 20, 2012 at 3:31 PM, Nicolas Dermine < >

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" : > Did that but still spaces in between . > > > First Name INPUTEXT > true > > 100 http://www.vim.org/maillist.php

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 > > ... You can select the text and use gJ, which acts like J but doesn't insert spaces between lines. It won't remove the in-line spaces or tabs hough. You can also use

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 specifi

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 "vim_

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

2012-07-20 Thread Tony Mechelynck
On 20/07/12 21:06, BPJ wrote: 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 With Vim y

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

2012-07-20 Thread Bee
Another way to think about it... Since it is html, remove all white spaces INCLUDING newlines between tags: %s/>\_s\+ the end of a tag \_sall white space INCLUDING newlines \+ one or more of the preceding < beginning of the next tag />http://www.vim.org/maillist.php