Patch 7.2.219 (extra) Problem: Photon GUI is outdated. Solution: Updates for QNX 6.4.0. (Sean Boudreau) Files: src/gui_photon.c ... *************** ...
Bram Moolenaar
Bram@...
Jul 1, 2009 2:13 pm
54524
Patch 7.2.220 (after 7.2.215) Problem: a BufEnter autocommand that changes directory causes problems. (Ajit Thakkar) Solution: Disable autocommands when...
Bram Moolenaar
Bram@...
Jul 1, 2009 3:13 pm
54525
Patch 7.2.221 Problem: X cut_buffer0 text is used as-is, it may be in the wrong encoding. Solution: Convert between 'enc' and latin1. (James Vega) Files:...
Bram Moolenaar
Bram@...
Jul 1, 2009 4:02 pm
54526
Any comments on adding the ":unsilent" command modifier? ... Execute {command} not silently. Only makes a difference when |:silent| was used to get to this ...
Bram Moolenaar
Bram@...
Jul 1, 2009 4:55 pm
54527
Saluton Bram :) ... I would find it very useful, specially for the example you use in the help text. Moreover, it is a very "cheap" command in code terms. ...
Raúl Núñez d...
raulnac@...
Jul 1, 2009 5:09 pm
54528
Patch 7.2.222 Problem: ":mksession" doesn't work properly with 'acd' set. Solution: Make it work. (Yakov Lerner) Files: src/ex_docmd.c ... ...
Bram Moolenaar
Bram@...
Jul 1, 2009 6:19 pm
54529
... This might be interesting for you, it tells about various different ways of creating a GUI around Vim, some active, others not: ...
Markus Heidelberg
markus.heidelberg@...
Jul 1, 2009 9:38 pm
54530
... [...] Looks interesting. Assuming that Vim's behaviour won't change if it isn't used, and considering, as Raúl said, the small cost in terms of code, why...
Tony Mechelynck
antoine.mechelynck@...
Jul 2, 2009 12:16 am
54531
... It seems like a good idea, if only for the symmetry. Any chance for another change to how :silent works, though, while we're at it? I'd find it very...
Matt Wozniski
mjw@...
Jul 2, 2009 12:45 am
54532
... The message history is to store displayed messages. If a message isn't displayed then it should not be in the history. If you want to log some things to...
Bram Moolenaar
Bram@...
Jul 2, 2009 6:08 pm
54533
Hi, I received the following report of a crash inside Vim on the MacVim project page: http://code.google.com/p/macvim/issues/detail?id=191 From the stack trace...
björn
bjorn.winckler@...
Jul 2, 2009 7:33 pm
54534
Oops, accidentally sent this to Bram off-list. ... It just seems that it would be nicer if each plugin didn't need to roll its own ad-hoc logging solution....
Matt Wozniski
mjw@...
Jul 2, 2009 8:53 pm
54535
... I guessed you would want this for debugging / logging, though one has to differentiate: If the plugin really needs to inform the user about something, ... ...
Ingo Karkat
swdev@...
Jul 2, 2009 9:02 pm
54536
... Look at the stuff that Charles Campbell made. I don't think that "uniform logging" will help, really. I mean, what's simpler than: let g:mylog = [] ... ...
Bram Moolenaar
Bram@...
Jul 3, 2009 6:11 pm
54537
... There was a patch to the garbage collecor in 7.2.192. Were the patches up to that number included? -- "I can't complain, but sometimes I still do." (Joe...
Bram Moolenaar
Bram@...
Jul 3, 2009 6:16 pm
54538
... VIM - Vi IMproved 7.2 (2008 Aug 9, compiled Apr 13 2009 18:52:48) MacOS X (unix) version Included patches: 1-148 From what I can tell it may be hard to...
björn
bjorn.winckler@...
Jul 3, 2009 6:23 pm
54539
Path completion on Windows and Unix are different regarding case sensitivity. Given file './Blah' on Windows, vim command ':e b<tab>' will expand out to ':e...
Thomas Rowe
thomas_rowe@...
Jul 3, 2009 6:33 pm
54540
... Vim couldn't possibly obey settings in .inputrc, since it doesn't use readline. As for case-insensitive completion, see this: ...
Matt Wozniski
mjw@...
Jul 3, 2009 6:53 pm
54541
... Hi I can still reproduce the bug with latest Vim-7.2.222. However, I have not found the way to fix it. I can see that function ins_compl_free() frees...
Dominique Pellé
dominique.pelle@...
Jul 4, 2009 7:00 am
54542
After deleting the last line of a buffer, the cursor lnum position is invalid and causes the following error message, if a key happens to be pressed while Vim...
Xavier de Gaye
xdegaye@...
Jul 8, 2009 9:10 pm
54543
... The stack trace helped pinpointing the problem. Adjusting the marks takes a while, and displaying the cursor is triggered there. Thus we need to adjust...
Bram Moolenaar
Bram@...
Jul 9, 2009 12:18 pm
54544
Patch 7.2.223 Problem: When a script is run with ":silent" it is not able to give warning messages. Solution: Add the ":unsilent" command. Files:...
Bram Moolenaar
Bram@...
Jul 9, 2009 2:01 pm
54545
Hello, I successfully built vim72 on windows mobile, and would be happy if I would be able to propagate my changes upstream. Before doing that I still need to ...
mobi phil
mobi@...
Jul 9, 2009 2:37 pm
54546
Patch 7.2.224 Problem: Crash when using 'completefunc'. (Ingo Karkat) Solution: Disallow entering edit() recursively when doing completion. Files:...
Bram Moolenaar
Bram@...
Jul 9, 2009 4:16 pm
54547
Patch 7.2.225 Problem: When using ":normal" a saved character may be executed. Solution: Also store old_char when saving typeahead. Files:...
Bram Moolenaar
Bram@...
Jul 9, 2009 4:29 pm
54548
... Support for more platforms is always welcome. I wonder how you manage to run congifure on a windows system. You probably need to write a src/README*.txt...
Bram Moolenaar
Bram@...
Jul 9, 2009 4:37 pm
54549
Patch 7.2.226 Problem: ml_get error after deleting the last line. (Xavier de Gaye) Solution: When adjusting marks a callback may be invoked. Adjust the...
Bram Moolenaar
Bram@...
Jul 9, 2009 6:07 pm
54550
Patch 7.2.227 Problem: When using ":cd" in a script there is no way to track this. Solution: Display the directory when 'verbose' is 5 or higher. Files:...
Bram Moolenaar
Bram@...
Jul 9, 2009 6:14 pm
54551
Patch 7.2.228 Problem: Cscope is limited to 8 connections. Solution: Allocated the connection array to handle any number of connections. (Dominique Pelle)...
Bram Moolenaar
Bram@...
Jul 9, 2009 7:23 pm
54552
Hello, Thanks for the positive answer... some clarifications: 1. windows ce and windows mobile are more or less the same what concerns the API. Windows ce is...