matchfuzzy( ) and matchfuzzypos() functions

2020-09-23 Fir de Conversatie Yegappan Lakshmanan
Hi all, I have addressed all the feedback about the matchfuzzy() and the matchfuzzypos() functions and this has been included in 8.2.1726. This includes the support for multibyte characters. Let me know if you have any problems in using these functions. Thanks, Yegappan -- -- You received thi

Re: Patch 8.2.1735

2020-09-23 Fir de Conversatie Yegappan Lakshmanan
Hi Bram, On Wed, Sep 23, 2020 at 2:06 PM Bram Moolenaar wrote: > > > Looks like this didn't make a difference. So why is it "cancelled by > user" after less than three minutes? Most of the action runs fail, > which means I tend to ignore them and they are hardly useful. > > > I agree. Most of

Re: Patch 8.2.1735

2020-09-23 Fir de Conversatie Bram Moolenaar
I wrote: > Patch 8.2.1735 > Problem:Github actions appear to timeout too soon. > Solution: use "timeout" instead of "ping". > Files: .github/workflows/ci-windows.yaml > > > *** ../vim-8.2.1734/.github/workflows/ci-windows.yaml 2020-08-31 > 21:30:28.994020232 +0200 > --- .github/wor

Patch 8.2.1736

2020-09-23 Fir de Conversatie Bram Moolenaar
Patch 8.2.1736 Problem:Failure to compile a pattern not tested much. Solution: Add tests where a pattern fails to compile. (Yegappan Lakshmanan, closes #7004) Files: src/testdir/gen_opt_test.vim, src/testdir/test_arglist.vim, src/testdir/test_autocmd.vim, src/te

Patch 8.2.1735

2020-09-23 Fir de Conversatie Bram Moolenaar
Patch 8.2.1735 Problem:Github actions appear to timeout too soon. Solution: use "timeout" instead of "ping". Files: .github/workflows/ci-windows.yaml *** ../vim-8.2.1734/.github/workflows/ci-windows.yaml 2020-08-31 21:30:28.994020232 +0200 --- .github/workflows/ci-windows.yaml 2

Patch 8.2.1734

2020-09-23 Fir de Conversatie Bram Moolenaar
Patch 8.2.1734 Problem:Vim9: cannot use a funcref for a closure twice. Solution: Instead of putting the funcref on the stack use a growarray on the execution context. Files: src/vim9.h, src/vim9compile.c, src/vim9execute.c, src/testdir/test_vim9_func.vim,

Unnecessary "syntax reset"

2020-09-23 Fir de Conversatie Maxim Kim
Hi, could someone with knowledge clarify if syntax reset is actually needed when authoring colorschemes? From the issue description: https://github.com/vim/colorschemes/issues/34 |" Load the syntax highlighting defaults, if it's enabled. if exists("syntax_on") syntax reset endif | Is this s

Patch 8.2.1733

2020-09-23 Fir de Conversatie Bram Moolenaar
Patch 8.2.1733 Problem:Vim9: memory leaks when using nested function. Solution: Free function when compilation fails. Files: src/vim9compile.c *** ../vim-8.2.1732/src/vim9compile.c 2020-09-23 13:25:28.398827624 +0200 --- src/vim9compile.c 2020-09-23 18:47:54.402982730 +0200 *

Patch 8.2.1732

2020-09-23 Fir de Conversatie Bram Moolenaar
Patch 8.2.1732 Problem:Stuck when win_execute() for a popup causes an error. Solution: Disable the filter callback on error. (issue #6999) Files: src/popupwin.c, src/testdir/term_util.vim, src/testdir/test_popupwin.vim, src/testdir/dumps/Test_popupwin_win_execut

Patch 8.2.1731

2020-09-23 Fir de Conversatie Bram Moolenaar
Patch 8.2.1731 Problem:Vim9: cannot use += to append to empty NULL list. Solution: Copy the list instead of extending it. (closes #6998) Files: src/eval.c, src/testdir/test_vim9_assign.vim *** ../vim-8.2.1730/src/eval.c 2020-09-16 21:08:23.642361197 +0200 --- src/eval.c 2020-09-23

Patch 8.2.1730

2020-09-23 Fir de Conversatie Bram Moolenaar
Patch 8.2.1730 Problem:Vim9: cannot use member of unknown type. Solution: When type is unknown us "any". (closes #6997) Files: src/vim9compile.c, src/testdir/test_vim9_assign.vim *** ../vim-8.2.1729/src/vim9compile.c 2020-09-21 20:35:51.675186059 +0200 --- src/vim9compile.c 2020-

Patch 8.2.1729

2020-09-23 Fir de Conversatie Bram Moolenaar
Patch 8.2.1729 Problem:Endless loop when ":normal" feeds popup window filter. Solution: Add the ex_normal_busy_done flag. Files: src/globals.h, src/getchar.c, src/evalfunc.c, src/ex_docmd.c, src/menu.c, src/testdir/test_popupwin.vim, src/testdir/dumps/Test_popup