... Ok. I messed up on this one. However I now have another problem -- I find that pressing Ctrl-W in the command line deletes a word as defined by iskeyword...
39857
bram@...
Jun 4, 2005 3:51 am
The message contains Unicode characters and has been sent as a binary attachment....
39858
Mikolaj Machowski
mikmach@...
Jun 4, 2005 1:14 pm
... Did you read what I wrote? Besides, this is about substitute() (where \n is accepted), not ... m....
39859
A. J. Mechelynck
antoine.mechelynck@...
Jun 4, 2005 5:42 pm
... substitute(39;asdf1234asdf','\d*39;,'\=substitute(submatch(0),".","\n","g")') E119: Not enough arguments for function: substitute E15: Invalid expression: ...
39860
Mikolaj Machowski
mikmach@...
Jun 4, 2005 10:07 pm
... That is expected. substitute() requires flag element, even if empty. ... That is my problem. ... Doesn't work for me. Today CVS, Linux, Mandriva 10.2. Note...
39861
A. J. Mechelynck
antoine.mechelynck@...
Jun 4, 2005 10:33 pm
... [...] Replacing echo with echomsg in either my second or my third example gives me asdf^M^M^M^Masdf too. With ... etc., followed by ... I also get...
39862
Moshe Kaminsky
kaminsky@...
Jun 5, 2005 6:38 am
Hi, I've just tried to use the spelling system. Great feature, thanks Bram! I have some questions: 1. The help says that the .spl files are looked for in the...
39863
A. J. Mechelynck
antoine.mechelynck@...
Jun 5, 2005 7:46 am
Hi Vimmers! In the latest snapshot of gvim 7 (which I have just compiled and uploaded, see http://users.skynet.be/antoine.mechelynck/vim/#vim7 ), the default...
39864
Chris Allen
c.d.allen@...
Jun 5, 2005 8:05 am
... This doesn't work particularly well for me using today's Vim7 from CVS. I seem to get spell checking of text inside {} with these modifications (which is...
39865
A. J. Mechelynck
antoine.mechelynck@...
Jun 5, 2005 8:48 am
Bug or feature? New in gvim 7.00aa snapshot 0079 *Search* highlight "guifg" attribute for "Search" highlight is no more expressed. Example: Search for a string...
39866
Bram Moolenaar
Bram@...
Jun 5, 2005 12:17 pm
... I'm glad you like it. I don't know when you obtained the code, I just sent out a new version last night with completely changed spell code. The data...
39867
Bram Moolenaar
Bram@...
Jun 5, 2005 12:17 pm
... The guifg color should be used, if specified. It's in the todo list. ... Same problem. -- hundred-and-one symptoms of being an internet addict: 29. Your...
39868
Bram Moolenaar
Bram@...
Jun 5, 2005 12:41 pm
... This patch appears to solve the reported problems with Search and Visual highlighting: ... *************** *** 3580,3586 **** if (area_attr == 0 &&...
39869
A. J. Mechelynck
antoine.mechelynck@...
Jun 5, 2005 2:27 pm
... [...] ... [...] gvim, snapshot 0079 without the patch: Visual: blue bg, fg of underlying syntax group ... changes bg to 80% grey IncSearch bg = underlying...
39870
Mikolaj Machowski
mikmach@...
Jun 5, 2005 2:32 pm
... No. echo and echomsg behaviour is correct. echo tries to interpret special characters and remove them when cannot do this. While echomsg show everything...
39871
Walter Briscoe
wbriscoe@...
Jun 5, 2005 5:33 pm
In message <200506031015.j53AFWkO021336@...> of Fri, 3 Jun 2005 12:15:32 in , Bram Moolenaar <Bram@...> writes ... [snip] ... Wow! You have...
39872
Bram Moolenaar
Bram@...
Jun 5, 2005 7:04 pm
... Yes, the return value of this snprintf() is reliable, we can use it. ... Actually, we can do without "n" when moving the STRLEN() to inside function call. ...
39873
Moshe Kaminsky
kaminsky@...
Jun 5, 2005 7:46 pm
Hi, ... That would solve the problem. What seems to me the most reasonable from the user's point of view is to use the @Spell/@NoSpell value of the group with...
The sequence "};" produces several lint reports like: EMSG_RET_NULL(IObuff); ^ regexp.c(1533) : Warning 527: Unreachable code at token ';' The cause is #define...
39876
Walter Briscoe
wbriscoe@...
Jun 6, 2005 12:43 pm
In message <200506051907.j55J7C6j035335@...> of Sun, 5 Jun 2005 21:07:12 in , Bram Moolenaar <Bram@...> writes ... [ Near buffer.c(2450), I...
39877
Walter Briscoe
wbriscoe@...
Jun 6, 2005 12:45 pm
I came on this in todo.txt: ... Vi incompatibility: 9 In Ex mode, "u" undoes all changes, not just the last one. (John Cowan) ... I tried to check if it is...
39878
Nikolai Weibull
mailing-lists.vim-dev...
Jun 6, 2005 1:04 pm
... Hardly. The contents of the do-while is reachable exactly once. The constant while statement will be optimized away by any decent compiler, nikolai -- ...
39879
Walter Briscoe
wbriscoe@...
Jun 6, 2005 1:05 pm
lint produces many reports like: os_mswin.c(342) : Info 715: Symbol 'which39; (line 337) not referenced The corresponding code is: void mch_restore_title( int...
39880
Bram Moolenaar
Bram@...
Jun 6, 2005 3:14 pm
... This problem has already been fixed in Vim 7. In Vim 6.3 you can reproduce it with: vim -e -u NONE 0a this is line 1 this is line 2 . 1 s/this/THIS/p ...
39881
Bram Moolenaar
Bram@...
Jun 6, 2005 3:14 pm
... I normally add /*ARGSUSED*/ and don't bother to take the complicated route. It's not worth it. -- The users that I support would double-click on a...
39882
Bram Moolenaar
Bram@...
Jun 6, 2005 3:17 pm
... That is a bogus warning, it's completely legal to have a ';' here and it can't be something wrong in the code. ... That's a good solution. ... It's good to...
39883
Eljay Love-Jensen
eljay@...
Jun 6, 2005 3:31 pm
Hi everyone, ... Change to... #define EMSG_RET_NULL(m) do { EMSG(m); rc_did_emsg = TRUE; return NULL; } while(0) HTH, --Eljay...
39884
Bram Moolenaar
Bram@...
Jun 7, 2005 9:09 am
Patch 6.3.076 Problem: Crash when using cscope and there is a parse error (e.g., line too long). (Alexey I. Froloff) Solution: Pass the actual number of...
39885
Walter Briscoe
wbriscoe@...
Jun 7, 2005 10:49 am
In message <200506061515.j56FFq0U014593@...> of Mon, 6 Jun 2005 17:15:52 in , Bram Moolenaar <Bram@...> writes ... [snip] ... Thanks for...