Hi Bram,
2013/12/8 Sat 4:15:16 UTC+9 Bram Moolenaar wrote:
> This mail gateway is used by millions of UPC users, of course there are
> spam messages sent. There is no way for me to stop this.
>
> Please, do NOT use these so called spam blockers. They do more harm
> than good.
Sorry, it seems t
On 07-Dec-2013 18:02 +0100, Hisashi T Fujinaka wrote:
> I have two columns of text and I just want to replace in one of the two
> columns. For example:
>
> foo-bar-grillfoo-bar
> 2foo-bar-grillfoo-bar
>
> and I just want to replace the second foo-bar with moose or something. I
> can visu
Cesar Romani wrote:
> On 07/12/2013 11:07 a.m., Cesar Romani wrote:
> > On 07/12/2013 08:29 a.m., Bram Moolenaar wrote:
> > >
> > > Cesar Romani wrote:
> > > [...]
> > >>
> > >> How about with this one:
> > >>
> > >>
> > >> --- Make_ming.mak.org 2013-11-22 00
This happens now and then:
> This Message was undeliverable due to the following reason:
>
> Each of the following recipients was rejected by a remote mail server.
> The reasons given by the server are included to help you determine why
> each recipient was rejected.
>
> Recipient:
>
> forgive my banality, but by any chance is there an extra 's' in the
> subject of this email?
Function was named in such a way because vim.foo objects are normally defined
with Foo* functions and vim.options is named vim.options and not vim.option
because it grants access to the number of optio
On 07/12/2013 11:07 a.m., Cesar Romani wrote:
> On 07/12/2013 08:29 a.m., Bram Moolenaar wrote:
> >
> > Cesar Romani wrote:
> > [...]
> >>
> >> How about with this one:
> >>
> >>
> >> --- Make_ming.mak.org 2013-11-22 00:16:21 -0500
> >> +++ Make_ming.mak 2013-12-06 21
I have two columns of text and I just want to replace in one of the two
columns. For example:
foo-bar-grill foo-bar
2foo-bar-grill foo-bar
and I just want to replace the second foo-bar with moose or something. I
can visually select either column and then try a search and replace.
Hitting : wi
On Sat, Dec 07, 2013 at 02:29:00PM +0100, Bram Moolenaar wrote:
> ZyX wrote:
forgive my banality, but by any chance is there an extra 's' in the
subject of this email?
--
_|_ _ __|_|_ ._ o|
|_(_)(_)|_| ||_)||<
|
--
--
You received this message from the "vim_dev" mail
On 07/12/2013 08:29 a.m., Bram Moolenaar wrote:
>
> Cesar Romani wrote:
>
>> On 06/12/2013 03:03 p.m., Bram Moolenaar wrote:
>> >
>> > Cesar Romani wrote:
>> > [...]
>> >
>> >> ifeq (yes, $(DYNAMIC_PERL))
>> >> DEFINES += -DDYNAMIC_PERL
-DDYNAMIC_PERL_DLL=\"perl$(PERL_VER).d
On 07/12/13 16:55, Tony Mechelynck wrote:
On 07/12/13 15:41, Bram Moolenaar wrote:
Brook Hong wrote:
Could we add {lhs} to mapclear so that only the key mappings starting
with {lhs} are cleared?
Just like map,
:map{lhs}|mapmode-nvo|*:map_l*
List the key m
On 07/12/13 15:41, Bram Moolenaar wrote:
Brook Hong wrote:
Could we add {lhs} to mapclear so that only the key mappings starting
with {lhs} are cleared?
Just like map,
:map{lhs} |mapmode-nvo| *:map_l*
List the key mappings for the key s
Brook Hong wrote:
> Could we add {lhs} to mapclear so that only the key mappings starting
> with {lhs} are cleared?
>
> Just like map,
>
> :map{lhs} |mapmode-nvo| *:map_l*
> List the key mappings for the key sequences starting
>
Ken Takata wrote:
> After 7.4.081 static analysis with MSVC10 (Windows SDK 7.1) is supported.
> I compiled 7.4.110 with MSVC10 enabling the static analysis. I attach the
> result of the analysis. Maybe the most of the warnings are false positive,
> but I found some parts which should be fixed.
Patch 7.4.113
Problem:MSVC static analysis gives warnings.
Solution: Avoid the warnings and avoid possible bugs. (Ken Takata)
Files: src/os_win32.c
*** ../vim-7.4.112/src/os_win32.c 2013-11-21 12:34:07.0 +0100
--- src/os_win32.c 2013-12-07 14:41:35.0 +0100
*
Patch 7.4.112
Problem:The defaults for 'directory' and 'backupdir' on MS-Windows do not
include a directory that exists.
Solution: Use $TEMP.
Files: src/os_dos.h
*** ../vim-7.4.111/src/os_dos.h 2013-06-12 20:09:44.0 +0200
--- src/os_dos.h2013-12-04 15:23:22
Patch 7.4.111
Problem:Memory leak in Python OptionsAssItem. (Ken Takata)
Solution: Call Py_XDECREF() where needed. (ZyX)
Files: src/if_py_both.h
*** ../vim-7.4.110/src/if_py_both.h 2013-11-28 17:04:38.0 +0100
--- src/if_py_both.h2013-12-07 14:23:00.0 +0100
Cesar Romani wrote:
> On 06/12/2013 03:03 p.m., Bram Moolenaar wrote:
> >
> > Cesar Romani wrote:
> > [...]
> >
> >>ifeq (yes, $(DYNAMIC_PERL))
> >>DEFINES += -DDYNAMIC_PERL -DDYNAMIC_PERL_DLL=\"perl$(PERL_VER).dll\"
> >> +EXTRA_LIBS += -L$(PERL)/lib/CORE -lperl$(PERL_VER)
> >>
ZyX wrote:
> # HG changeset patch
> # User ZyX
> # Date 1386410239 -14400
> # Sat Dec 07 13:57:19 2013 +0400
> # Branch fix-sa-warning-1
> # Node ID c87415f3c0adc44106d6c2944c53f721c94cc6f5
> # Parent 486655e0c5a21469364d3cf895535137f09b3724
> Fix error found by @Ken Takata
Thanks, I'll i
Hi,
2013/12/7 Sat 18:49:37 UTC+9 Ken Takata wrote:
> Hi,
>
> After 7.4.081 static analysis with MSVC10 (Windows SDK 7.1) is supported.
> I compiled 7.4.110 with MSVC10 enabling the static analysis. I attach the
> result of the analysis. Maybe the most of the warnings are false positive,
> but I
On Saturday, December 7, 2013 1:49:37 PM UTC+4, Ken Takata wrote:
> Hi,
>
> After 7.4.081 static analysis with MSVC10 (Windows SDK 7.1) is supported.
> I compiled 7.4.110 with MSVC10 enabling the static analysis. I attach the
> result of the analysis. Maybe the most of the warnings are false pos
# HG changeset patch
# User ZyX
# Date 1386410239 -14400
# Sat Dec 07 13:57:19 2013 +0400
# Branch fix-sa-warning-1
# Node ID c87415f3c0adc44106d6c2944c53f721c94cc6f5
# Parent 486655e0c5a21469364d3cf895535137f09b3724
Fix error found by @Ken Takata
diff -r 486655e0c5a2 -r c87415f3c0ad src/if
21 matches
Mail list logo