Re: Announce: ECMAScript interface for Vim

2019-05-11 Fir de Conversatie Prabir Shrestha
On Wednesday, March 6, 2019 at 12:09:58 PM UTC-8, Bob Pepin wrote: > > On 6 Mar 2019, at 13.36, Andy Massimino <...@gmail.com> wrote: > > > What is the performance of duktape like? > > > > Parsing typescript.js (~ 7 MB, 121 K lines) into an AST with Esprima takes 14 > s on Duktape, versus 0.5 s

Patch 8.1.1324

2019-05-11 Fir de Conversatie Bram Moolenaar
Patch 8.1.1324 Problem:Stray comma in VMS makefile. Solution: Remove the comma. (Naruhiko Nishino, closes #4368) Files: src/Make_vms.mms *** ../vim-8.1.1323/src/Make_vms.mms2019-05-11 17:03:55.170019762 +0200 --- src/Make_vms.mms2019-05-11 21:49:23.189681411 +0200 ***

Re: Patch 8.1.1320

2019-05-11 Fir de Conversatie John Marriott
On 12-May-2019 03:15, Bram Moolenaar wrote: Patch 8.1.1320 Problem:It is not possible to track changes to a buffer. Solution: Add listener_add() and listener_remove(). No docs or tests yet. Files: src/structs.h, src/change.c, src/proto/change.pro After this patch I get this linker e

Re: Patch 8.1.1267

2019-05-11 Fir de Conversatie Bram Moolenaar
> On Sat, May 11, 2019 at 01:10:04PM +0200, Bram Moolenaar wrote: > > > > > On Fri, May 10, 2019 at 09:57:09PM +0200, Bram Moolenaar wrote: > > > > > git bisect finds this. However I tried again and it finds 1265. > > > > > Perhaps > > > > > I need to clean the workspace between each run. So I

Patch 8.1.1323

2019-05-11 Fir de Conversatie Bram Moolenaar
Patch 8.1.1323 Problem:'mouse' option is reset when using GPM mouse. Solution: Add flag for GPM mouse. Files: src/term.c *** ../vim-8.1.1322/src/term.c 2019-05-10 23:10:25.708517754 +0200 --- src/term.c 2019-05-11 21:34:36.494112500 +0200 *** *** 2108,2115 # def

Patch 8.1.1322

2019-05-11 Fir de Conversatie Bram Moolenaar
Patch 8.1.1322 Problem:Cygwin makefile is not nicely indented. Solution: Addjust spaces in preprocessor directives. (Ken Takata) Files: src/Make_cyg_ming.mak *** ../vim-8.1.1321/src/Make_cyg_ming.mak 2019-05-11 17:03:55.170019762 +0200 --- src/Make_cyg_ming.mak 2019-05-1

Re: [patch][win32] Indent preprocessor directives in Make_cyg_ming.mak

2019-05-11 Fir de Conversatie Bram Moolenaar
Ken Takata wrote: > Preprocessor directives in Make_cyg_ming.mak are not indented now. > The following patch indents them: > > https://bitbucket.org/k_takata/vim-ktakata-mq/src/330d810f8c533c58a67a010d786cdbc37ea634f8/indent-make_cyg_ming.patch?at=default I'll include it, thanks. -- SUPERIMP

Patch 8.1.1321

2019-05-11 Fir de Conversatie Bram Moolenaar
Patch 8.1.1321 Problem:No docs or tests for listener functions. Solution: Add help and tests for listener_add() and listener_remove(). Invoke the callbacks before redrawing. Files: runtime/doc/eval.txt, runtime/doc/usr_41.txt, src/testdir/test_listener.vim, src/

Patch 8.1.1320

2019-05-11 Fir de Conversatie Bram Moolenaar
Patch 8.1.1320 Problem:It is not possible to track changes to a buffer. Solution: Add listener_add() and listener_remove(). No docs or tests yet. Files: src/structs.h, src/change.c, src/proto/change.pro *** ../vim-8.1.1319/src/structs.h 2019-05-09 21:08:53.764083394 +0200 --- s

Re: Window-local and Tab-local previous directories?

2019-05-11 Fir de Conversatie Manuel Ortega
On Friday, May 10, 2019 at 5:20:08 PM UTC-4, Bram Moolenaar wrote: > I think that's the best way we provide this functionality. But I like > to hear from others. I think this is adding complexity, a maintenance burden, and yet another corner for corner-cases to hide in, all for the sake of a

Re: Patch 8.1.1317

2019-05-11 Fir de Conversatie Bram Moolenaar
Tony wrote: > On Sat, May 11, 2019 at 2:34 PM Bram Moolenaar wrote: > > > > > > Patch 8.1.1317 > > Problem:Output from Travis can be improved. > > Solution: Add section headers. Handle errors better. (closes #4098) > > Files: .travis.yml, configure > > The if_ver-1.vim and if_ver2.

Re: Window-local and Tab-local previous directories?

2019-05-11 Fir de Conversatie Yegappan Lakshmanan
Hi all, On Fri, May 10, 2019 at 2:20 PM Bram Moolenaar wrote: > > > > > *:cd-* *E186* > > :cd[!] - Change to the previous current directory (before the > >previous ":cd {path}" or the ":tcd {path}" or th

Patch 8.1.1319

2019-05-11 Fir de Conversatie Bram Moolenaar
Patch 8.1.1319 Problem:Computing function length name in many places. Solution: compute name length in call_func(). Files: src/eval.c, src/userfunc.c, src/channel.c, src/evalfunc.c, src/ex_cmds2.c, src/regexp.c, src/terminal.c *** ../vim-8.1.1318/src/eval.c 2019-05-04 15

Patch 8.1.1318

2019-05-11 Fir de Conversatie Bram Moolenaar
Patch 8.1.1318 Problem:Code for text changes is in a "misc" file. Solution: Move the code to change.c. Files: src/misc1.c, src/proto/misc1.pro, src/change.c, src/proto/change.pro, src/proto.h, src/memline.c, Filelist, src/Make_cyg_ming.mak, src/Make_dice.mak, sr

[patch][win32] Indent preprocessor directives in Make_cyg_ming.mak

2019-05-11 Fir de Conversatie Ken Takata
Hi, Preprocessor directives in Make_cyg_ming.mak are not indented now. The following patch indents them: https://bitbucket.org/k_takata/vim-ktakata-mq/src/330d810f8c533c58a67a010d786cdbc37ea634f8/indent-make_cyg_ming.patch?at=default Regards, Ken Takata -- -- You received this message from th

Re: Patch 8.1.1267

2019-05-11 Fir de Conversatie lilydjwg
On Sat, May 11, 2019 at 01:10:04PM +0200, Bram Moolenaar wrote: > > > On Fri, May 10, 2019 at 09:57:09PM +0200, Bram Moolenaar wrote: > > > > git bisect finds this. However I tried again and it finds 1265. Perhaps > > > > I need to clean the workspace between each run. So I tried again and it > >

Re: Patch 8.1.1317

2019-05-11 Fir de Conversatie Tony Mechelynck
On Sat, May 11, 2019 at 2:34 PM Bram Moolenaar wrote: > > > Patch 8.1.1317 > Problem:Output from Travis can be improved. > Solution: Add section headers. Handle errors better. (closes #4098) > Files: .travis.yml, configure The if_ver-1.vim and if_ver2.vim scripts used in (the unchange

Patch 8.1.1317

2019-05-11 Fir de Conversatie Bram Moolenaar
Patch 8.1.1317 Problem:Output from Travis can be improved. Solution: Add section headers. Handle errors better. (closes #4098) Files: .travis.yml, configure *** ../vim-8.1.1316/.travis.yml 2019-04-13 22:44:48.325154165 +0200 --- .travis.yml 2019-05-11 14:31:35.947081575 +0200 **

Patch 8.1.1316

2019-05-11 Fir de Conversatie Bram Moolenaar
Patch 8.1.1316 Problem:Duplicated localtime() call. Solution: Delete one. Files: src/undo.c *** ../vim-8.1.1315/src/undo.c 2019-05-10 21:28:35.184612974 +0200 --- src/undo.c 2019-05-11 13:08:17.411847703 +0200 *** *** 3117,3123 if (vim_time() - tt >= 100)

Re: Patch 8.1.1267

2019-05-11 Fir de Conversatie Bram Moolenaar
> On Fri, May 10, 2019 at 09:57:09PM +0200, Bram Moolenaar wrote: > > > git bisect finds this. However I tried again and it finds 1265. Perhaps > > > I need to clean the workspace between each run. So I tried again and it > > > finds 1265 again. And reverting that patch (including 1-1264, 1266-13

Re: Patch 8.1.1267

2019-05-11 Fir de Conversatie lilydjwg
On Fri, May 10, 2019 at 09:57:09PM +0200, Bram Moolenaar wrote: > > git bisect finds this. However I tried again and it finds 1265. Perhaps > > I need to clean the workspace between each run. So I tried again and it > > finds 1265 again. And reverting that patch (including 1-1264, 1266-1312) > > th

Re: Wrong message E764 in Windows 10

2019-05-11 Fir de Conversatie Antonio Giovanni Colombo
Hi Jürgen, I got a new version of Windows Insiders (Build 18894.1000), and the problem is still there. Sooo, maybe it is some further check in Windows that it is here to stay or whatever. Looking into the help for 'runtimepath', in Windows, the first place checked for a writable directory is $HOM