Re: [doc][patch] explanation of "s" char to :help showing-menus

2020-03-16 Fir de Conversatie Tom M
> That "*" should be "s" then. I'll include that. Yes. Sure. This is a copy-paste error where I would expect some 21st-century-AI-check to automatically kick in. ;-) Tom M -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are

Patch 8.2.0397

2020-03-16 Fir de Conversatie Bram Moolenaar
Patch 8.2.0397 Problem:Delayed screen update when using undo from Insert mode. Solution: Update w_topline and cursor shape before sleeping. (closes #5790) Files: src/normal.c *** ../vim-8.2.0396/src/normal.c2020-02-21 21:30:33.867979726 +0100 --- src/normal.c

Patch 8.2.0396

2020-03-16 Fir de Conversatie Bram Moolenaar
Patch 8.2.0396 Problem:Cmdexpand.c insufficiently tested. Solution: Add more tests. (Yegappan Lakshmanan, closes #5789) Files: src/testdir/test_cmdline.vim, src/testdir/test_taglist.vim, src/testdir/test_terminal.vim, src/testdir/test_usercommands.vim ***

Re: [doc][patch] explanation of "s" char to :help showing-menus

2020-03-16 Fir de Conversatie Bram Moolenaar
Tom M wrote: > :menu listing sometimes contains items with an "s" in the first column. > Here is an example which can be seen after sourcing the standard menu.vim: > > :menu Edit.Select\ All--- Menus --- > 400 All^IggVG > n :call 11_SelectAll() > v :call 11_SelectAll() > s

Re: Patch 8.2.0385

2020-03-16 Fir de Conversatie Bram Moolenaar
John Marriott wrote: > On 16-Mar-2020 02:14, Bram Moolenaar wrote: > > Patch 8.2.0385 > > Problem:Menu functionality insufficiently tested. > > Solution: Add tests. Add menu_info(). (Yegappan Lakshmanan, closes #5760) > > Files: runtime/doc/eval.txt, runtime/doc/gui.txt, > >

Patch 8.2.0395

2020-03-16 Fir de Conversatie Bram Moolenaar
Patch 8.2.0395 Problem:Build fails with FEAT_EVAL but without FEAT_MENU. Solution: Add #ifdef. (John Marriott) Files: src/evalfunc.c *** ../vim-8.2.0394/src/evalfunc.c 2020-03-15 16:51:36.934946237 +0100 --- src/evalfunc.c 2020-03-16 21:07:20.978132005 +0100

[doc][patch] explanation of "s" char to :help showing-menus

2020-03-16 Fir de Conversatie Tom M
Hi, :menu listing sometimes contains items with an "s" in the first column. Here is an example which can be seen after sourcing the standard menu.vim: :menu Edit.Select\ All--- Menus --- 400 All^IggVG n :call 11_SelectAll() v :call 11_SelectAll() s :call 11_SelectAll() o

Patch 8.2.0394

2020-03-16 Fir de Conversatie Bram Moolenaar
Patch 8.2.0394 Problem:Coverity complains about using NULL pointer. Solution: Use empty string when option value is NULL. Files: src/optionstr.c *** ../vim-8.2.0393/src/optionstr.c 2020-02-01 21:57:00.848520936 +0100 --- src/optionstr.c 2020-03-16 20:26:26.979696768 +0100

Patch 8.2.0393

2020-03-16 Fir de Conversatie Bram Moolenaar
Patch 8.2.0393 Problem:Coverity warns for not using return value. Solution: Add (void). Files: src/popupmenu.c *** ../vim-8.2.0392/src/popupmenu.c 2020-01-27 22:09:35.796838619 +0100 --- src/popupmenu.c 2020-03-16 20:06:18.168079118 +0100 *** *** 1071,1082

Patch 8.2.0392

2020-03-16 Fir de Conversatie Bram Moolenaar
Patch 8.2.0392 Problem:Coverity warns for using array index out of range. Solution: Add extra "if" to avoid warning. Files: src/menu.c *** ../vim-8.2.0391/src/menu.c 2020-03-15 16:12:16.552208654 +0100 --- src/menu.c 2020-03-16 20:04:32.980471725 +0100 *** ***

Re: Patch 8.2.0385

2020-03-16 Fir de Conversatie John Marriott
On 16-Mar-2020 02:14, Bram Moolenaar wrote: Patch 8.2.0385 Problem:Menu functionality insufficiently tested. Solution: Add tests. Add menu_info(). (Yegappan Lakshmanan, closes #5760) Files: runtime/doc/eval.txt, runtime/doc/gui.txt, runtime/doc/usr_41.txt,

Re: Patch 8.2.0385

2020-03-16 Fir de Conversatie Bram Moolenaar
Tom M wrote: > > > > + Examples: > > > + :echo maparg('Edit.Cut') > > + :echo maparg('File.Save', 'n') > > + < > > + Can also be used as a |method|: > > > + GetMenuName()->maparg('v') >

Patch 8.2.0391

2020-03-16 Fir de Conversatie Bram Moolenaar
Patch 8.2.0391 (after 8.2.0377) Problem:CI test coverage dropped. Solution: Set $DISPLAY also for non-GUI builds. (James McCoy, closes #5788) Files: .travis.yml *** ../vim-8.2.0390/.travis.yml 2020-03-15 15:10:07.911101429 +0100 --- .travis.yml 2020-03-16 12:05:54.769722093 +0100

Re: Pending appveyor build requests are not canceled when a PR is updated

2020-03-16 Fir de Conversatie Christian Brabandt
On Mo, 16 Mär 2020, Ken Takata wrote: > Parallel builds may not work for the Free plan. > > https://www.appveyor.com/docs/parallel-testing/#requirements > > but jobs will run in series as the Free plan allows 1 concurrent job per > account. > > One possible option is utilizing GitHub Actions.

Re: Pending appveyor build requests are not canceled when a PR is updated

2020-03-16 Fir de Conversatie Ken Takata
Hi Christian, 2020/3/16 Mon 17:08:13 UTC+9 Christian Brabandt wrote: > > > On Sa, 14 Mär 2020, Dominique Pellé wrote: > > > Yegappan Lakshmanan > wrote: > > > > > Hi, > > > > > > When a PR is updated multiple times quickly, multiple build requests > > > are submitted to Travis-CI and

Re: Pending appveyor build requests are not canceled when a PR is updated

2020-03-16 Fir de Conversatie Christian Brabandt
On Sa, 14 Mär 2020, Dominique Pellé wrote: > Yegappan Lakshmanan wrote: > > > Hi, > > > > When a PR is updated multiple times quickly, multiple build requests > > are submitted to Travis-CI and Appveyor. In Travis-CI only the last > > build request is processed and all the older pending build