Re: Match numbers'intervall

2011-10-14 Thread Zsolt Udvari
Maybe it helps you: http://www.regular-expressions.info/numericranges.html Zsolt 2011/10/14 niva : > Hi > > I don't know how I can elaborate pattern that match numbers between > 8353764 and 8353788? > > Thank you > > -- > You received this message from the "vim_use" maillist. > Do not top-post!

Re: simple question. how to install vim

2010-12-16 Thread Zsolt Udvari
Which distro do you use? Do you see ncurses-*-devel? 2010/12/17 ale <33faceb...@gmail.com>: > to be fair, the distro provides an old version, i think 7.1, and many > scripts and plugins are designed to fail completely (i.e. stop > sourcing) if not at least 7.2 > > i you could please be more specif

Re: simple question. how to install vim

2010-12-16 Thread Zsolt Udvari
> what is exactly the name of the library i have to install? As I wrote: ncurses-devel. Again: why do you want install vim from source? I think it would be simplier when you will install vim from source. Zsolt -- You received this message from the "vim_use" maillist. Do not top-post! Type your r

Re: simple question. how to install vim

2010-12-16 Thread Zsolt Udvari
Hello! > checking for tgetent in -lncurses... no > checking for tgetent in -ltermlib... no > checking for tgetent in -ltermcap... no > checking for tgetent in -lcurses... no > no terminal library found > checking for tgetent()... configure: error: NOT FOUND! >      You need to install a terminal l

Re: [?] VIM,console,Mark

2010-10-19 Thread Zsolt Udvari
Hi! :help mark I hope this is what you want. Zsolt 2010/10/19 Heefan : > Hi guys, > > I am using vim console under linux without any gui. > Is there any mark plugin for console vim ? > I am doing c++ programming and wanna highlight some lines and easy to find > it after I jump here and there.

Re: Lua support

2010-09-23 Thread Zsolt Udvari
> I want vim to interpret my lua code instead of the external lua interpreter. > > Like: > :lua x={mtest=5} > :lua print(x.mtest) Oops, sorry :) -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, vis

Re: Lua support

2010-09-23 Thread Zsolt Udvari
Hello Marco! Maybe you'll like this: http://www.vim.org/scripts/script.php?script_id=1763 Zsolt 2010/9/23 Marco : > Hi, > > Vim 7.3 has build-in Lua support, right? Is there any documentation about the > API, sample lua scripts or alike to see how things work? > > Regards > Marco > > > -- > You

Re: Toggle line numbering?

2010-09-21 Thread Zsolt Udvari
Or a shorter version: se nu Zsolt 2010/9/22 Izaak Khaliq : > How to set line number to always on in vimrc? > > -- > You received this message from the "vim_use" maillist. > Do not top-post! Type your reply below the text you are replying to. > For more information, visit http://www.vim.org/mailli

Re: unsuscribing?

2009-08-17 Thread Zsolt Udvari
> Sorry to post this request to the list, but how can I unsuscribe? My > requests to vim-unsuscr...@vim.org come back as undeliverable. Imho the adress is not exact: vim-unsubscr...@vim.org You missed a "b" ;) Zsolt --~--~-~--~~~---~--~~ You received this messa

vim_use@googlegroups.com

2009-07-05 Thread Zsolt Udvari
> How do you change the second matching pair in stead of the first one. > I have the following substitute but I can't get it in such a way that > it works on the second pair. > > :g/\ > > So > INPUT s1 , s2 > INPUT s2 , s1 > > must come > > INPUT s1 , (s2) > INPUT s2 , (s1) Im

Re: how to add only one space character before and after a ,

2009-07-05 Thread Zsolt Udvari
> If a line contains a , this , should have only one space character and > also only one space character > after it. How do you do that? > > So the following: > sX,sY > sX ,sY > sX, sY > sX, sY > > Must all be come (the last one should be trimmed to one space before > and after