Re: Cannot set terminal options with :let

2011-03-13 Thread Tony Mechelynck
On 13/03/11 08:46, John Little wrote: On Mar 13, 7:07 pm, Tony Mechelynckantoine.mechely...@gmail.com wrote: Are you sure you did it in Console mode? Well, I thought I had. But I just tried it, and it worked. Checking my bash history, yes I did run vim in gnome-terminal; the plot thickens.

Re: Introducing Vnews, a Vim-based newsfeed reader

2011-03-13 Thread Dalker
Hello. I just installed vnews, which looks very promising. Thanks for developing and sharing great scripts! I did however have to struggle a bit with the installation: - there were some more dependecies than those listed in the installation instructions, notably regarding mysql-ruby libraries.

The right way to do global operatot in visually selected block?

2011-03-13 Thread Yosi Izaq
Hi, As per subject. For instance, how to delete all lines containing pattern X from visual block. I know how to do substitute (use %V or range) and after a short trial error to apply ed commands (like d or m) I came up with ','g/X/d Is this the correct way or am I working too hard?

Re: Introducing Vnews, a Vim-based newsfeed reader

2011-03-13 Thread Tom Link
Hi, On 22 Feb., 20:25, Daniel Choi dhc...@gmail.com wrote: I'm releasing another VimScript/Ruby application today called Vnews. It's a lightweight newsfeed reader that works inside a Vim session and uses MySQL to store feed data. SCNR Lightweight but relies on ruby support compiled in and on

Re: The right way to do global operatot in visually selected block?

2011-03-13 Thread Tim Chase
On 03/13/2011 06:05 AM, Yosi Izaq wrote: ','g/X/d Is this the correct way or am I working too hard? This is what I do, and I can't think of any more concise way to write this -- when you're in visual mode and press the :, vim automatically feeds the visual range so all you have to type (in

who could share the book vim 101 hacks

2011-03-13 Thread wei gao
Many thanks if anybody could share this great book:) -- 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/maillist.php

Re: HowTo delete all lines ending in a certain string?

2011-03-13 Thread Joan Miquel Torres Rigo
2011/3/10 Christian Brabandt cbli...@256bit.org: :g/\.\.\?$/d Technically this will also delete other file names if ends in a dot (not a recommendable name, but possible at all). This other one will avoid it: :g/\(\s\.\|\/\.\)\.\?$/d Regards. -- Joan Miquel