Re: Consistently exit message display with 'q'?

2007-03-21 Thread Stahlman Family
- Original Message - From: Jean-Rene David [EMAIL PROTECTED] To: vim@vim.org Sent: Tuesday, March 20, 2007 9:56 AM Subject: Re: Consistently exit message display with 'q'? * Bram Moolenaar [2007.03.20 11:45]: How many times did I repeat a command just because I had pressed Space

Re: grep and regular expression

2006-12-16 Thread Stahlman Family
- Original Message - From: Naim Far [EMAIL PROTECTED] To: vim@vim.org Sent: Thursday, December 14, 2006 8:06 AM Subject: grep and regular expression Hi, I'm writing C++ code, I'm trying to search for all class declaration via the following command: :grep 'class\s*\w\+{' *.hpp

Re: Spurious undefined variable error generated for certain valid ternary expressions

2006-11-08 Thread Stahlman Family
- Original Message - From: Bram Moolenaar [EMAIL PROTECTED] To: Stahlman Family [EMAIL PROTECTED] Cc: vim@vim.org Sent: Wednesday, November 08, 2006 2:00 PM Subject: Re: Spurious undefined variable error generated for certain valid ternary expressions Brett Stahlman wrote

Re: gvim cut paste selection

2006-11-07 Thread Stahlman Family
Ujjal, Although it fixed the problem (or perhaps only masked it, as the underlying problem is with Cygwin X), the patch I submitted to Vim was rejected. Bram maintained that since the bug pertained to Cygwin XWindows, so should the fix. I actually did not disagree with him on this point. The

Re: gvim cut paste selection

2006-11-07 Thread Stahlman Family
- Original Message - From: Ujjal Bose [EMAIL PROTECTED] To: vim@vim.org Sent: Tuesday, November 07, 2006 1:19 PM Subject: Re: gvim cut paste selection On 11/8/06, Stahlman Family [EMAIL PROTECTED] wrote: Ujjal, Although it fixed the problem (or perhaps only masked

Spurious undefined variable error generated for certain valid ternary expressions

2006-11-07 Thread Stahlman Family
The following expression var10?var:10 generates the following errors: E121: Undefined variable: var:10 E15: Invalid expression: var10?var:10 The reason is that find_name_end uses eval_isnamec unconditionally to decide whether a character is a valid variable name character, with the

Re: Why not use binary search for wildmode tag completion in case of fixed-start, non-regex pattern?

2006-09-23 Thread Stahlman Family
- Original Message - From: A.J.Mechelynck [EMAIL PROTECTED] To: Stahlman Family [EMAIL PROTECTED] Cc: vim@vim.org Sent: Saturday, September 23, 2006 1:59 AM Subject: Re: Why not use binary search for wildmode tag completion in case of fixed-start, non-regex pattern? Stahlman Family

Why not use binary search for wildmode tag completion in case of fixed-start, non-regex pattern?

2006-09-22 Thread Stahlman Family
Recently, I've begun building tags for a very large development project. The time required by Vim to build the list prior to displaying the first match after I hit wildchar for a :tag command has become noticeably long. I researched it a bit in both the help and the source code, and I'm