Re: Patch 7.3.746

2012-12-06 Fir de Conversatie Christian Brabandt
On Wed, December 5, 2012 15:17, Bram Moolenaar wrote: > Patch 7.3.746 […] > + /* Somehow qf_count may have an incorrect value, set it to 1 > + * to avoid crashing when it's wrong. > + * TODO: Avoid qf_count being incorrect. */ > + qi->qf_lists[idx].

Re: [patch] Add a 'modifier' keyword to the :syntax commands, allowing syntax matches to stack.

2012-12-06 Fir de Conversatie So8res
synID now returns a list. synIDattr now takes a list. They both still handle the single-id case, but the code's a bit messy and the name is stale. I think we should add synActive and synActiveAttr, which take/return lists instead of single numbers, and then deprecate synID*. -- You received th

Lost contact

2012-12-06 Fir de Conversatie Bram Moolenaar
Sorry to bother the list with this: I have a couple of people for who I no longer have a valid address or email, and I need to get in touch with them. I assume they are Vim users, that's why I am trying the Vim maillist. Daniel Hofmann (was in Bielefeld) Daniel Geh (was in Aalen)

Re: [doc] align columns when :set conceallevel=2

2012-12-06 Fir de Conversatie Bram Moolenaar
Dominique Pelle wrote: > Ken Takata wrote: > > > Hi, > > > > 2012/06/03 Sun 22:38:35 UTC+9 Ken Takata: > >> Hi Bram and Dominique, > >> > >> > So please hold this patch until the Tab behavior is changed. Then we at > >> > least know what to change. > >> > >> OK, I will wait the change of the T

Patch 7.3.754

2012-12-06 Fir de Conversatie Bram Moolenaar
Patch 7.3.754 Problem:Latest nmake is not recognized. Solution: Add nmake version 11.00.51106.1. (Raymond Ko) Files: src/Make_mvc.mak *** ../vim-7.3.753/src/Make_mvc.mak 2012-10-23 05:35:30.0 +0200 --- src/Make_mvc.mak2012-12-06 21:27:56.0 +0100 ***

Re: Small change to support Visual Studio 2012 Update 1

2012-12-06 Fir de Conversatie Bram Moolenaar
Raymond Ko wrote: > Attached is a small change to support the newest NMAKE introduced by > Visual Studio 2012 Update 1. I have tested it and VIM seems to compile > fine. I'll include it, thanks. -- Amnesia is one of my favorite words, but I forgot what it means. /// Bram Moolenaar -- b...@mo

Re: [patch] Add a 'modifier' keyword to the :syntax commands, allowing syntax matches to stack.

2012-12-06 Fir de Conversatie Nate Soares
Oh, right, of course we can't have a {flatten} arg in synIDattr without knowing the row/column. It seems like the right thing to do here is have synID return a list of IDs being used, and have synIDattr take a list of IDs and flatten them when looking up an attribute. This has the nice property th

Re: Small change to support Visual Studio 2012 Update 1

2012-12-06 Fir de Conversatie Raymond Ko
On Thursday, December 6, 2012 10:35:34 AM UTC-5, skeept wrote: > Hi Raymond, > > On Wednesday, December 5, 2012 2:01:26 PM UTC-5, Raymond Ko wrote: > > Hello all, > > > > Attached is a small change to support the newest NMAKE introduced by Visual > > Studio 2012 Update 1. I have tested it and VI

Re: Small change to support Visual Studio 2012 Update 1

2012-12-06 Fir de Conversatie skeept
Hi Raymond, On Wednesday, December 5, 2012 2:01:26 PM UTC-5, Raymond Ko wrote: > Hello all, > > Attached is a small change to support the newest NMAKE introduced by Visual > Studio 2012 Update 1. I have tested it and VIM seems to compile fine. I updated visual studio yesterday and temporarily

Re: [patch] Add a 'modifier' keyword to the :syntax commands, allowing syntax matches to stack.

2012-12-06 Fir de Conversatie Charles Campbell
Ben Fritz wrote: On Wednesday, December 5, 2012 10:47:42 PM UTC-6, So8res wrote: Oops, sorry, I was misunderstanding how synID* worked. I've updated the patch to add the "combine" {what} to synIDattr, which is the bare minimum we need here. synID should definitely return only one ID in this c

Re: [patch] Add a 'modifier' keyword to the :syntax commands, allowing syntax matches to stack.

2012-12-06 Fir de Conversatie Ben Fritz
On Wednesday, December 5, 2012 10:47:42 PM UTC-6, So8res wrote: > Oops, sorry, I was misunderstanding how synID* worked. > > I've updated the patch to add the "combine" {what} to synIDattr, which is the > bare minimum we need here. > > synID should definitely return only one ID in this case, bot