Re: Patch 8.2.3263

2021-07-31 Fir de Conversatie John Marriott
On 01-Aug-2021 06:51, Bram Moolenaar wrote: Patch 8.2.3263 Problem:Vim9: "..=" does not accept same types as the ".." operator. Solution: Convert value to string like ".." does. (issue #8664) Files: src/vim9compile.c, src/testdir/test_vim9_assign.vim, src/testdir/test_vim

Patch 8.2.3263

2021-07-31 Fir de Conversatie Bram Moolenaar
Patch 8.2.3263 Problem:Vim9: "..=" does not accept same types as the ".." operator. Solution: Convert value to string like ".." does. (issue #8664) Files: src/vim9compile.c, src/testdir/test_vim9_assign.vim, src/testdir/test_vim9_disassemble.vim *** ../vim-8.2.3262/src/vi

Patch 8.2.3262

2021-07-31 Fir de Conversatie Bram Moolenaar
Patch 8.2.3262 Problem:Build failure when ABORT_ON_INTERNAL_ERROR is defined. Solution: Adjust how estack_len_before is used. Files: src/ex_docmd.c *** ../vim-8.2.3261/src/ex_docmd.c 2021-07-31 21:44:31.747825431 +0200 --- src/ex_docmd.c 2021-07-31 22:14:21.194368777 +0200

Patch 8.2.3261

2021-07-31 Fir de Conversatie Bram Moolenaar
Patch 8.2.3261 Problem:Vim9: when compiling repeat(123, N) return type is number. Solution: Make return type a string. (closes #8664) Files: src/evalfunc.c, src/testdir/test_vim9_builtin.vim *** ../vim-8.2.3260/src/evalfunc.c 2021-07-30 21:32:41.444722506 +0200 --- src/evalfunc.

Patch 8.2.3260

2021-07-31 Fir de Conversatie Bram Moolenaar
Patch 8.2.3260 Problem:Build failure with small features. Solution: Add #ifdef. Files: src/ex_docmd.c *** ../vim-8.2.3259/src/ex_docmd.c 2021-07-31 21:32:27.421666727 +0200 --- src/ex_docmd.c 2021-07-31 21:43:39.367958216 +0200 *** *** 1388,1393 --- 1388,13

Patch 8.2.3259

2021-07-31 Fir de Conversatie Bram Moolenaar
Patch 8.2.3259 Problem:When 'indentexpr' causes an error the did_throw flag may remain set. Solution: Reset did_throw and show the error. (closes #8677) Files: src/indent.c, src/ex_docmd.c, src/proto/ex_docmd.pro *** ../vim-8.2.3258/src/indent.c2021-07-27 22:00:39

Patch 8.2.3258

2021-07-31 Fir de Conversatie Bram Moolenaar
Patch 8.2.3258 Problem:Error messages have the wrong text. Solution: Adjust the error message. Files: src/errors.h, src/typval.c, src/testdir/test_vim9_builtin.vim *** ../vim-8.2.3257/src/errors.h2021-07-29 20:37:45.652199179 +0200 --- src/errors.h2021-07-31 19:00:45.

Patch 8.2.3257

2021-07-31 Fir de Conversatie Bram Moolenaar
Patch 8.2.3257 Problem:Calling prop_find() with -1 for ID gives errornous error. (Naohiro Ono) Solution: When passing -1 use -2. (closes #8674) Files: src/textprop.c, src/testdir/test_textprop.vim *** ../vim-8.2.3256/src/textprop.c 2021-07-28 13:30:12.212929910 +0200

Re: [vim/vim] patch 8.2.3173: Vim9: argument types are not checked at compile time (a9a7c0c)

2021-07-31 Fir de Conversatie Yegappan Lakshmanan
Hi, On Sat, Jul 31, 2021 at 9:06 AM Restorer wrote: > Unfortunately, there is no way to make a pull request right now. > The error "E839" in the documentation refers to a custom completion > function. > https://vimhelp.org/insert.txt.html#E839 > > > The help needs to be updated to r

Patch 8.2.3256

2021-07-31 Fir de Conversatie Bram Moolenaar
Patch 8.2.3256 Problem:Executable test may fail on new Ubuntu system. Solution: Consider /usr/bin/cat and /bin/cat the same. Files: src/testdir/test_functions.vim *** ../vim-8.2.3255/src/testdir/test_functions.vim 2021-07-28 16:51:49.857364325 +0200 --- src/testdir/test_functio

Re: Patch 8.2.3255

2021-07-31 Fir de Conversatie Maxim Kim
nevermind, I have just read your explanation on another thread. суббота, 31 июля 2021 г. в 17:59:51 UTC+3, Maxim Kim: > > суббота, 31 июля 2021 г. в 14:32:23 UTC+3, Bram Moolenaar: > >> >> Patch 8.2.3255 >> Problem: ci" finds following string but ci< and others don't. >> Solution: When not in

Re: Patch 8.2.3255

2021-07-31 Fir de Conversatie Maxim Kim
суббота, 31 июля 2021 г. в 14:32:23 UTC+3, Bram Moolenaar: > > Patch 8.2.3255 > Problem: ci" finds following string but ci< and others don't. > Solution: When not inside an object find the start. (Connor Lane Smit, > closes #8670) > Files: src/search.c, src/testdir/test_textobjects.vim, src/

Re: [vim/vim] proposal: add prop_add_list() to enable adding multiple text properties per call (#8675)

2021-07-31 Fir de Conversatie Yegappan Lakshmanan
Hi, On Sat, Jul 31, 2021 at 1:08 AM Pontus Leitzler wrote: > I'm not sure if it's really a practical issue as such? As far as I can > tell it's plenty fast enough. > > Aside: the biggest issue I ran in to is that length can't span multiple > lines and that I need to do some stuff to transform by

Patch 8.2.3255

2021-07-31 Fir de Conversatie Bram Moolenaar
Patch 8.2.3255 Problem:ci" finds following string but ci< and others don't. Solution: When not inside an object find the start. (Connor Lane Smit, closes #8670) Files: src/search.c, src/testdir/test_textobjects.vim, src/textobject.c *** ../vim-8.2.3254/src/search.c

Re: Update to help text

2021-07-31 Fir de Conversatie Bram Moolenaar
Yegappan wrote: > When adding the Vim9 argument type checks to the built-in functions, > I noticed some minor issues in the help text for these functions. > > 1. The help for some functions that accept a String argument have the > description that states that the argument is a string. But

Patch 8.2.3254

2021-07-31 Fir de Conversatie Bram Moolenaar
Patch 8.2.3254 Problem:win_gettype() does not recognize a quickfix window. Solution: Add "quickfix" and "loclist". (Yegappan Lakshmanan, closes #8676) Files: runtime/doc/eval.txt, src/evalwindow.c, src/misc2.c, src/testdir/test_quickfix.vim *** ../vim-8.2.3253/runtime/doc