[patch] typo fixes in documentation

2020-10-24 Fir de Conversatie Dominique Pellé
Hi Attached patch fixes a few typos in vim-8.2.1900 documentation. Regards Dominique -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received

Patch 8.2.1800

2020-10-24 Fir de Conversatie Bram Moolenaar
Patch 8.2.1900 Problem:Vim9: command modifiers do not work. Solution: Make most command modifiers work. Files: src/vim9.h, src/vim9compile.c, src/vim9execute.c, src/usercmd.c, src/proto/usercmd.pro, src/scriptfile.c, src/testdir/test_vim9_disassemble.vim ***

Re: [vim/vim] netrw: Fix gx command (#7188)

2020-10-24 Fir de Conversatie Ingo Karkat
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 On 24/10/2020 20:52, Charles Campbell wrote: > Charles Campbell wrote: >> James McCoy wrote: >>> On Thu, Oct 22, 2020, 21:39 Charles Campbell >>> mailto:campb...@drchip.org>> wrote: >>> >>> I confess that I'm not a git master. It'd be a help if you

Patch 8.2.1899

2020-10-24 Fir de Conversatie Bram Moolenaar
Patch 8.2.1899 Problem:Crash in out-of-memory situation. Solution: Bail out if shell_name is NULL. (Dominique Pellé, closes #7196) Files: src/ex_cmds.c *** ../vim-8.2.1898/src/ex_cmds.c 2020-10-24 20:49:37.494683051 +0200 --- src/ex_cmds.c 2020-10-24 20:55:40.725560050

Re: [vim/vim] netrw: Fix gx command (#7188)

2020-10-24 Fir de Conversatie Charles Campbell
Charles Campbell wrote: James McCoy wrote: On Thu, Oct 22, 2020, 21:39 Charles Campbell > wrote:     I confess that I'm not a git master.  It'd be a help if you could     send     me a patch instead of a commit which I don't use If you append ".diff" to a pull

Patch 8.2.1898

2020-10-24 Fir de Conversatie Bram Moolenaar
Patch 8.2.1898 Problem:Command modifier parsing always uses global cmdmod. Solution: Pass in cmdmod_T to use. Rename struct fields consistently. Files: src/structs.h, src/arglist.c src/buffer.c, src/bufwrite.c, src/diff.c, src/change.c, src/cmdhist.c, src/edit.c,

Re: [vim/vim] netrw: Fix gx command (#7188)

2020-10-24 Fir de Conversatie Charles Campbell
James McCoy wrote: On Thu, Oct 22, 2020, 21:39 Charles Campbell > wrote: I confess that I'm not a git master.  It'd be a help if you could send me a patch instead of a commit which I don't use If you append ".diff" to a pull request URL, you get a diff

Re: Possible bug in pattern processing for try/catch blocks

2020-10-24 Fir de Conversatie Yegappan Lakshmanan
Hi, On Sat, Oct 24, 2020 at 8:15 AM Jason Franklin wrote: > Greetings: > > I have discovered that the pattern matching in try/catch blocks does not > conform to my expectations. > > Try this example: > > try > echoerr 'foo bar baz' > catch /foo/ > echo 'caught' >

Patch 8.2.1897

2020-10-24 Fir de Conversatie Bram Moolenaar
Patch 8.2.1897 Problem:Command modifiers are saved and set inconsistently. Solution: Separate parsing and applying command modifiers. Save values in cmdmod_T. Files: src/structs.h, src/ex_docmd.c, src/proto/ex_docmd.pro, src/ex_cmds.h, src/vim9compile.c ***

Possible bug in pattern processing for try/catch blocks

2020-10-24 Fir de Conversatie Jason Franklin
Greetings: I have discovered that the pattern matching in try/catch blocks does not conform to my expectations. Try this example: try echoerr 'foo bar baz' catch /foo/ echo 'caught' endtry The string "caught" is printed, as I would expect. Now try this: try

Patch 8.2.1896

2020-10-24 Fir de Conversatie Bram Moolenaar
Patch 8.2.1896 Problem:Valgrind warns for using uninitialized memory. Solution: NUL terminate the SmcOpenConnection() error message. (Dominique Pellé, closes #7194) Files: src/os_unix.c *** ../vim-8.2.1895/src/os_unix.c 2020-10-09 23:04:43.676144228 +0200 ---