Re: help for a git newbie -- no merge candidate found

2009-02-11 Fir de Conversatie Markus Heidelberg
_sc_, 11.02.2009: On Tuesday 10 February 2009 5:54 pm, Markus Heidelberg wrote: _sc_, 07.02.2009: On Friday 06 February 2009 4:09 pm, Matt Wozniski wrote: and my .git/config contains: Somehow, you're missing this: [branch custom] remote = origin

Patch 7.2.103

2009-02-11 Fir de Conversatie Bram Moolenaar
Patch 7.2.103 Problem:When 'bomb' is changed the window title is updated to show/hide a +, but the tab page label isn't. (Patrick Texier) Solution: Set redraw_tabline in most places where need_maketitle is set. (partly by Lech Lorens) Files: src/option.c ***

Re: vim_extended/vim_mainline git repos independent of svn repo

2009-02-11 Fir de Conversatie Markus Heidelberg
Markus Heidelberg, 11.02.2009: Christian MICHON, 06.02.2009: you're facing the same problem I faced in July. I noticed (example 7.2.102) the commit message is truncated. so we're even here: I've the same issue and this requires somehow manual intervention. :( James does manual

Re: Create vimballs from the command-line

2009-02-11 Fir de Conversatie Matt Wozniski
On Tue, Feb 10, 2009 at 9:48 PM, Charles E. Campbell, Jr. wrote: Matt Wozniski wrote: But let's not forget that they have significant disadvantages, too... Vimballs made with new versions of the plugin don't work on older vims. There's been one problem with that -- 7.0 vimball doesn't

Re: Create vimballs from the command-line

2009-02-11 Fir de Conversatie Tom Link
Right.  For the near term, supporting unzipping using a pure-vimscript solution isn't terribly likely, but it's definitely possible OOTB in vims built with +python, for example. installing zip-based plugins basically is a matter of exec '!unzip '. shellescape(expand('%')) .' -d ~/vimfiles'

Re: Create vimballs from the command-line

2009-02-11 Fir de Conversatie Matt Wozniski
On Wed, Feb 11, 2009 at 11:06 AM, Tom Link micat...@gmail.com wrote: Right. For the near term, supporting unzipping using a pure-vimscript solution isn't terribly likely, but it's definitely possible OOTB in vims built with +python, for example. IMHO reliance on compiled-in +python support

Re: help for a git newbie -- no merge candidate found

2009-02-11 Fir de Conversatie _sc_
On Wednesday 11 February 2009 4:00 am, Markus Heidelberg wrote: [...] Maybe you have an old git version installed, where the automatic setup of .git/config for the remote tracking branches (during the command git checkout -b custom origin/vim-with-runtime) was not yet the

Patch 7.2.108

2009-02-11 Fir de Conversatie Bram Moolenaar
Patch 7.2.108 (after 7.2.105) Problem:Can't build without the diff feature. Solution: Add #ifdef. Files: src/option.c *** ../vim-7.2.107/src/option.c Wed Feb 11 16:45:56 2009 --- src/option.cWed Feb 11 22:21:16 2009 *** *** 4127,4132 --- 4127,4133

[patch] fixed access to free memory when using some autocommands

2009-02-11 Fir de Conversatie Dominique Pelle
Testing autocommands, I see that Vim-7.2.107 (and older) is using memory already freed when doing silly autocommands such as: $ touch foobar $ valgrind ./vim -u NONE -c 'au! BufReadPre * cd /tmp' \ -c 'e foobar' 2 vg.log In vg.log, I then see the following error:

Bram, you're the best! (Was: Patch 7.2.105)

2009-02-11 Fir de Conversatie Tony Mechelynck
On 11/02/09 22:54, Tony Mechelynck wrote: On 11/02/09 16:46, Bram Moolenaar wrote: Patch 7.2.105 Problem:Modeline setting for 'foldmethod' overrules diff options. (Ingo Karkat) Solution: Don't set 'foldmethod' and 'wrap' from a modeline when 'diff' is on. Files:

'switchbuf' usetab misbehaviour, incorrect title for the location list window

2009-02-11 Fir de Conversatie Lech Lorens
The attached patch fixes the misbehaviour of vim when 'switchbuf' is set to usetab. Also the location list window is not incorrectly described as quickfix window any more. To reproduce the problems perform the following steps: Create a file file.txt containing the string foo. Open Vim: vim -p

Re: Create vimballs from the command-line

2009-02-11 Fir de Conversatie Tony Mechelynck
On 11/02/09 03:48, Charles E. Campbell, Jr. wrote: Matt Wozniski wrote: But let's not forget that they have significant disadvantages, too... Vimballs made with new versions of the plugin don't work on older vims. There's been one problem with that -- 7.0 vimball doesn't handle the later

Re: Create vimballs from the command-line

2009-02-11 Fir de Conversatie Tony Mechelynck
On 11/02/09 16:23, Matt Wozniski wrote: [...] Well, of course I didn't mean that we should add the features to the zip format. Rather, I meant we should do something more like XPI - create a zip file, rename it to .vba, and let vim handle it specially. The change would be transparent to

Re: Create vimballs from the command-line

2009-02-11 Fir de Conversatie Tony Mechelynck
On 11/02/09 06:42, Tom Link wrote: You can specify the base path with the final arg to MkVimball. If you wanted to create vimballs from cygwin bash by calling Windows gvim (you could of course use cygwin's vim but ...), you'd have to convert the path which works most of the time but can be

Re: Create vimballs from the command-line

2009-02-11 Fir de Conversatie Gary Johnson
On 2009-02-12, Tony Mechelynck antoine.mechely...@gmail.com wrote: And then there are people like me who can un- .zip files if they have to, but prefer to gunzip them (un- .gz), which is the Unix standard (as opposed to the Microsoft Megabucks LoseDough standard). And note that if the

Re: Create vimballs from the command-line

2009-02-11 Fir de Conversatie Matt Wozniski
On Wed, Feb 11, 2009 at 7:29 PM, Tony Mechelynck wrote: On 11/02/09 16:23, Matt Wozniski wrote: [...] Well, of course I didn't mean that we should add the features to the zip format. Rather, I meant we should do something more like XPI - create a zip file, rename it to .vba, and let vim

Re: Create vimballs from the command-line

2009-02-11 Fir de Conversatie Charles E. Campbell, Jr.
Gary Johnson wrote: On 2009-02-12, Tony Mechelynck antoine.mechely...@gmail.com wrote: And then there are people like me who can un- .zip files if they have to, but prefer to gunzip them (un- .gz), which is the Unix standard (as opposed to the Microsoft Megabucks LoseDough standard).

Re: Create vimballs from the command-line

2009-02-11 Fir de Conversatie Tony Mechelynck
On 12/02/09 02:07, Gary Johnson wrote: On 2009-02-12, Tony Mechelynckantoine.mechely...@gmail.com wrote: And then there are people like me who can un- .zip files if they have to, but prefer to gunzip them (un- .gz), which is the Unix standard (as opposed to the Microsoft Megabucks LoseDough

Re: vim_extended/vim_mainline git repos independent of svn repo

2009-02-11 Fir de Conversatie Tony Mechelynck
On 11/02/09 03:35, Markus Heidelberg wrote: James Vega, 06.02.2009: On Thu, Feb 05, 2009 at 10:23:33PM +0100, Markus Heidelberg wrote: What do you think about the commit message format, is it ok? I searched for a git-like message, without losing information. The duplicated first line of the