Re: Patch 7.4.142

2014-01-30 Fir de Conversatie Nobuhiro Takasaki
> So this is instead of the patch from Yasuhiro Matsumoto? Thank you very much. I was speaking in various ways, but from me, I would appreciate it if you apply both patches. Thanks. Nobuhiro Takasaki -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type y

Re: Patch to utilize undefined text-objects

2014-01-30 Fir de Conversatie Daniel "paradigm" Thau
On Thursday, January 30, 2014 8:07:04 PM UTC-5, Marcin Szamotulski wrote: > On 16:45 Wed 29 Jan , Daniel "paradigm" Thau wrote: > > > Apologies for the delay. > > > > > > Review for those who have forgotten and/or don't care to backread: > > > > > > This patch adds a new text object, "m"

Re: Patch to utilize undefined text-objects

2014-01-30 Fir de Conversatie Marcin Szamotulski
On 16:45 Wed 29 Jan , Daniel "paradigm" Thau wrote: > Apologies for the delay. > > Review for those who have forgotten and/or don't care to backread: > > This patch adds a new text object, "m", which will take one more character as > input. That character will be used as bounds to the left

Re: Patch to utilize undefined text-objects

2014-01-30 Fir de Conversatie Peter Aronoff
On Thursday, January 30th, 2014 at 6:55PM, Daniel "paradigm" Thau wrote: > > Review for those who have forgotten and/or don't care to backread: > > > > This patch adds a new text object, "m", which will take one more > > character as input. That character will be used as bounds to the left > > an

Re: Patch 7.4.142

2014-01-30 Fir de Conversatie Bram Moolenaar
Nobuhiro Takasaki wrote: > There is another patch here. > Clear the window resize event that has no meaning to be generated > continuously and to suppress the occurrence of flicker. > > https://gist.github.com/ntak/8700490 > > Even Windows7, even Windows8, Windows in the future, too, will work

Re: Patch to utilize undefined text-objects

2014-01-30 Fir de Conversatie Ben Fritz
On Wednesday, January 29, 2014 6:45:23 PM UTC-6, Daniel "paradigm" Thau wrote: > Apologies for the delay. > > Review for those who have forgotten and/or don't care to backread: > > This patch adds a new text object, "m", which will take one more character as > input. That character will be used

Re: Spelling support doesn’t deal with ‘’’ correctly

2014-01-30 Fir de Conversatie Cesar Romani
On 08/03/2011 03:01 p.m., Dominique Pellé wrote: > > [...] > > I found the following patch which adds support of Hunspell > dictionary in Vim: > > https://bugzilla.redhat.com/show_bug.cgi?id=219777 > > I tried the patch and it still works with latest vim-7.3.138 > (I did not test it extensively ye

Re: weird matchadd() behavior

2014-01-30 Fir de Conversatie John Little
The pattern \<@ does not make sense with the default setting of the iskeyword option, \< matches the beginning of a word, but @ is not a word character, so it shouldn't match anything. If I set isk+=@-@ then the last line is matched. Maybe the use of @ in iskeyword has mislead you; it do

Re: weird matchadd() behavior

2014-01-30 Fir de Conversatie Kartik Agaram
Argh, apologies, that didn't come out right. Let me try again. If I have these lines on screen: abc > abcd > @abc > ..and I type: :call matchadd('Identifier', '\') This causes the bolded bits to be colorized, as expected: *abc* > abcd > @*abc* > However, if I instead type: :call matchadd('I

weird matchadd() behavior

2014-01-30 Fir de Conversatie Kartik Agaram
Dear vim devs, I just noticed that this colorizes: :call matchadd('Identifier', '\<@abc\>') But this doesn't: :call matchadd('Identifier', '\<@abc\>') Is there a reason for this? I've tested it without any startup files on 7.3 (patches 1-1302) on linux, with a file containing the following: a