Patch 8.2.1065

2020-06-26 Fir de Conversatie Bram Moolenaar
Patch 8.2.1065 Problem:Vim9: no line break allowed inside a list. Solution: Handle line break inside a list in Vim9 script. Files: src/eval.c, src/proto/eval.pro, src/list.c, src/proto/list.pro, src/vim9compile.c, src/testdir/test_vim9_expr.vim, src/testdir/test

Patch 8.2.1064

2020-06-26 Fir de Conversatie Bram Moolenaar
Patch 8.2.1064 Problem:Vim9: no line break allowed before comperators. Solution: Check for comperator after line break. Files: src/eval.c, src/testdir/test_vim9_expr.vim *** ../vim-8.2.1063/src/eval.c 2020-06-26 21:38:48.139342910 +0200 --- src/eval.c 2020-06-26 21:54:18.728931481

Re: [vim/vim] vim.list({}) index starts with 0 while neovim and lua array index starts with 1 (#6342)

2020-06-26 Fir de Conversatie Yegappan Lakshmanan
Hi, On Fri, Jun 26, 2020 at 12:49 PM Prabir Shrestha wrote: > Sent a PR for this. #6347 . > > > As you are working on enhancing the Vim Lua interface, it will be useful to improve the test coverage for if_lua.c by adding some more tests: https://codecov.io/

Patch 8.2.1063

2020-06-26 Fir de Conversatie Bram Moolenaar
Patch 8.2.1063 Problem:Vim9: no line break allowed before || or &&. Solution: Check for operator after line break. Files: src/eval.c, src/testdir/test_vim9_expr.vim *** ../vim-8.2.1062/src/eval.c 2020-06-26 21:28:22.008863411 +0200 --- src/eval.c 2020-06-26 21:32:13.304254326 +0200

Patch 8.2.1062

2020-06-26 Fir de Conversatie Bram Moolenaar
Patch 8.2.1062 Problem:Vim9: no line break allowed inside "cond ? val1 : val2". Solution: Check for operator after line break. Files: src/eval.c, src/testdir/test_vim9_expr.vim *** ../vim-8.2.1061/src/eval.c 2020-06-24 23:02:36.860095536 +0200 --- src/eval.c 2020-06-26 21:22:27.773

Patch 8.2.1061

2020-06-26 Fir de Conversatie Bram Moolenaar
Patch 8.2.1061 Problem:Insufficient testing for src/window.c. Solution: Add more tests. (Yegappan Lakshmanan, closes #6345) Files: src/testdir/test_excmd.vim, src/testdir/test_gf.vim, src/testdir/test_options.vim, src/testdir/test_popupwin.vim, src/testdir/test_

Patch 8.2.1060

2020-06-26 Fir de Conversatie Bram Moolenaar
Patch 8.2.1060 Problem:Not all elinks files are recognized. Solution: Just check for "elinks.conf". (Guido Cella, closes #6337) Files: runtime/filetype.vim, src/testdir/test_filetype.vim *** ../vim-8.2.1059/runtime/filetype.vim2020-06-25 19:53:21.602571208 +0200 --- runtime/

Patch 8.2.1059

2020-06-26 Fir de Conversatie Bram Moolenaar
Patch 8.2.1059 Problem:Crash when using :tabonly in an autocommand. (Yegappan Lakshmanan) Solution: Do not allow the autocommand window to be closed. Files: src/ex_docmd.c, src/window.c, src/globals.h, src/testdir/test_autocmd.vim *** ../vim-8.2.1058/src/ex_docmd.c 2

Re: [vim/vim] Wrong syntax coloring (#6331)

2020-06-26 Fir de Conversatie Christian Brabandt
On Do, 25 Jun 2020, Charles Campbell wrote: I think it is not about matchit itself, it was just an example. The thing was when using a plugin manager like vim-plug and you want to enable the matchit plugin, you use: Plug 'k-takata/matchit.vim' in your vimrc. And apparently, the ' is not dete