Re: confirm unsubscribe from vim@vim.org

2007-06-01 Thread Spencer Collyer

Re: confirm unsubscribe from vim-dev@vim.org

2007-05-31 Thread Spencer Collyer
:16 +0100 From: Spencer Collyer [EMAIL PROTECTED] To: [EMAIL PROTECTED] Message-ID: [EMAIL PROTECTED] Organization: Lasermount Limited X-Mailer: Claws Mail 2.7.2 (GTK+ 2.10.6; x86_64-unknown-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding

Re: confirm unsubscribe from vim@vim.org

2007-05-31 Thread Spencer Collyer
From: Spencer Collyer [EMAIL PROTECTED] To: [EMAIL PROTECTED] Message-ID: [EMAIL PROTECTED] Organization: Lasermount Limited X-Mailer: Claws Mail 2.7.2 (GTK+ 2.10.6; x86_64-unknown-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit

Re: wish: allow a: in the function def

2007-04-25 Thread Spencer Collyer
On Mon, 23 Apr 2007 21:10:20 -0500, Robert Lee wrote: Counterwish #2: Dump VimScript and replace it with EMCAScript (maybe using SpiderMonkey) so that people don't need to learn a new language just to change the color scheme or keyboard mappings. Yes, this will break backwards

Re: wish: allow a: in the function def

2007-04-25 Thread Spencer Collyer
On Wed, 25 Apr 2007 03:02:39 +0200, Nikolai Weibull wrote: On 4/24/07, Andy Wokula [EMAIL PROTECTED] wrote: As long as function arguments are read-only, it is good to have the a: modifier. In fact, why are they read-only, although call is by value? Yes, that's the reason for the a:

Re: Wish: need a way to reverse 'cterm=inverse' highlight command

2007-04-14 Thread Spencer Collyer
On Fri, 13 Apr 2007 16:11:53 +0800, [EMAIL PROTECTED] wrote: Spencer Collyer [EMAIL PROTECTED] 写于 2007-04-13 15:55:48: Typically, just after I sent my message I realised how to do it - just use 'cterm=NONE'. Spencer This is not perfect, since it removes ALL properties. Suppose

Wish: need a way to reverse 'cterm=inverse' highlight command

2007-04-13 Thread Spencer Collyer
Hi, First, some background. At my work I spend a lot of time editing data files in CSV format. Because some of the lines can have many empty fields (it's not unusual to have 20+ empty fields consecutively) I've developed a function which allows me to toggle highlighting of every 5th and 10th

Re: Wish: need a way to reverse 'cterm=inverse' highlight command

2007-04-13 Thread Spencer Collyer
Typically, just after I sent my message I realised how to do it - just use 'cterm=NONE'. Spencer -- Eagles may soar, but weasels don't get sucked into jet engines 8:53am up 44 days 15:36, 20 users, load average: 0.32, 0.28, 0.27 Registered Linux User #232457 | LFS ID 11703

Re: highlighting weird characters...

2007-03-25 Thread Spencer Collyer
On Mon, 19 Mar 2007 16:38:23 -0400, Mitch Wiedemann wrote: Hi all, I use VIM - Vi IMproved 7.0 (2006 May 7, compiled Feb 23 2007 22:17:23) to write mainly XHTML/PHP and I sometimes have to get content from word processed documents and paste it into Vim for HTML markup. This usually results

Re: VimTips Wiki: New Direction

2007-03-05 Thread Spencer Collyer
On Tue, 6 Mar 2007 03:18:13 +0200, Ali Polatel wrote: And check out http://en.wikibooks.org/wiki/Learning_the_vi_editor/Vim/TipsSandbox to see how it parsed tip #1. Looks good. Only comment I have is it might be better if the 'By' and 'On' lines for the comments were on the same line. Anything

Re: Aligning multi-line function calls with starting commas

2007-01-25 Thread Spencer Collyer
On Thu, 25 Jan 2007 10:10:18 +0100, A.J.Mechelynck wrote: Spencer Collyer wrote: Hi, When I'm writing C++ code, if I have a long comma-separated list of items (like initializer parameters or function arguments) I like to lay them out so that the comma is the first non-whitespace

Aligning multi-line function calls with starting commas

2007-01-24 Thread Spencer Collyer
Hi, When I'm writing C++ code, if I have a long comma-separated list of items (like initializer parameters or function arguments) I like to lay them out so that the comma is the first non-whitespace character on the line, like so: foo( param1 , param2 , param3