Re: gui dialogs

2010-04-10 Thread Tom Link
> For a sufficiently simple form, I'd instead use a CursorMoved autocmd > that detects when the cursor has been moved to the "inside" of a > checkbox. You'd probably have some difficulties to distinguish between focusing a checkbox and selecting a checkbox. -- You received this message from the

Re: gui dialogs

2010-04-10 Thread Tom Link
> Now I suppose if you could create a more "web like" text page, > complete with underlines, highlighting, and mouse-overs, then you > might have something. Think elinks.cz. But it would be a huge pain, > a real GUI toolkit would be much easier. I rewrote my library. No mouse-over effects yet but

RE: Is there a variable containing all tokens that matched a regex search term?

2010-04-10 Thread John Beckett
Adam wrote: > I found this function (CopyMatches) online a while ago from > here: > http://vim.wikia.com/wiki/Copy_the_search_results_into_clipboard You reminded me that I have enhanced that script to behave more usefully. It now defaults to copying from the whole file, and copying to the clipboar

Re: Is there a variable containing all tokens that matched a regex search term?

2010-04-10 Thread Christian Brabandt
Hi tomPorter! On Fr, 09 Apr 2010, tomPorter wrote: > Is there a way to create a new window and populate it with only the > found items? I would do it like this, which means :redir => a " redirect output into variable a :g/&&/ " print all lines matching the pattern &

Re: Is there a variable containing all tokens that matched a regex search term?

2010-04-10 Thread Antony Scriven
On 10 April 2010 12:29, Christian Brabandt wrote: > Hi tomPorter! > > On Fr, 09 Apr 2010, tomPorter wrote: > > Is there a way to create a new window and populate it > > with only the found items? You snipped the rest of the specification. > I would do it like this, which means > :redir =>

Re: Code changes highlight

2010-04-10 Thread Christian Brabandt
Hi Aarto! On Fr, 09 Apr 2010, Aarto Matti wrote: > Does any body know if there exists a plugin to highlight code changes. > I know at least two IDEs with that feature, few links: > > http://blog.eveningcreek.com/?p=151 > http://edn.embarcadero.com/article/33453#6PersonalDeveloperProductivity >

Re: Is there a variable containing all tokens that matched a regex search term?

2010-04-10 Thread Christian Brabandt
Hi Antony! On Sa, 10 Apr 2010, Antony Scriven wrote: > That's not what the OP asked for. --Antony Sorry, I misunderstood. regards, Christian -- 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: Code changes highlight

2010-04-10 Thread Aarto Matti
> Hm, I see, someone mentioned already a different plugin, but anyhow, > attached is one I just created. > > regards, > Christian Hello Christian, I will try it out, thank you! -- Aarto -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text yo

Re: gui dialogs

2010-04-10 Thread Steve Hall
On Sat, 2010-04-10 at 00:09 -0700, Tom Link wrote: > > The resulting form would look like this: > http://github.com/downloads/tomtom/vimform_vim/replace_gui.html Weird, in Firefox this page reports: "/tmp/replace_gui-3.html could not be opened, because the associated helper application does n

Re: Vim accented characters in text based console

2010-04-10 Thread Tony Mechelynck
On 10/04/10 11:23, Luis P. Mendes wrote: 2010/4/10 Tony Mechelynck: On 10/04/10 01:48, Luis P. Mendes wrote: Hi, I use Vim everyday, I could say at every hour :-) in X graphical mode. $ vim --version VIM - Vi IMproved 7.2 (2008 Aug 9, compiled Aug 24 2009 20:12:41) Included patches: 1-245 I

Re: Is there a variable containing all tokens that matched a regex search term?

2010-04-10 Thread Adam
On Sat, Apr 10, 2010 at 05:14, John Beckett wrote: > Adam wrote: > > I found this function (CopyMatches) online a while ago from > > here: > > http://vim.wikia.com/wiki/Copy_the_search_results_into_clipboard > > You reminded me that I have enhanced that script to behave more > usefully. It now de