Re: Fix regressions in the latest runtime files update

2020-01-13 Fir de Conversatie Ken Takata
Hi Bram and Charles, 2020/1/11 Sat 3:57:27 UTC+9 Bram Moolenaar wrote: > > > Ken Takata wrote: > > > There are many regressions in Charles' plugins in the latest runtime > file > > update > > as reported at > > > https://github.com/vim/vim/commit/2963456ff2b740244b3a064785fe681b1998d75e#r367

Patch 8.2.0116

2020-01-13 Fir de Conversatie Bram Moolenaar
Patch 8.2.0116 Problem:BufEnter autocmd not triggered on ":tab drop". (Andy Stewart) Solution: Decrement autocmd_no_enter for the last file. (closes #1660, closes #5473) Files: src/arglist.c, src/testdir/test_tabpage.vim *** ../vim-8.2.0115/src/arglist.c 2019-08-18

Patch 8.2.0115

2020-01-13 Fir de Conversatie Bram Moolenaar
Patch 8.2.0115 Problem:Byte2line() does not work correctly with text properties. (Billie Cleek) Solution: Take the bytes of the text properties into account. (closes #5334) Files: src/testdir/test_textprop.vim, src/memline.c *** ../vim-8.2.0114/src/testdir/tes

Re: More vim9 script developements

2020-01-13 Fir de Conversatie Bram Moolenaar
Ben Fritz wrote: > > a restriction will be that script-local items > > are defined once and not deleted. That makes it possible to find them > > by index, which is much faster than a dictionary lookup. > > Does this mean "unlet" will no longer work for local variables if > namespaces are used?

More vim9 script developements

2020-01-13 Fir de Conversatie Ben Fritz
> a restriction will be that script-local items are defined once and not deleted. That makes it possible to find them > by index, which is much faster than a dictionary lookup. Does this mean "unlet" will no longer work for local variables if namespaces are used? How about exists(), does this ad