Re: [patch] fixed typos in doc of vim-9.0.1337

2023-02-21 Fir de Conversatie Bram Moolenaar
> The attached patch fixes several typos in Vim documentation. Thanks, I'll include it. -- hundred-and-one symptoms of being an internet addict: 168. You have your own domain name. /// Bram Moolenaar -- b...@moolenaar.net -- http://www.Moolenaar.net \\\ ///

Patch 9.0.1339

2023-02-21 Fir de Conversatie Bram Moolenaar
Patch 9.0.1339 (after 9.0.1338) Problem:No test for :disassemble with class function. Solution: Add a test. Files: src/testdir/test_vim9_disassemble.vim *** ../vim-9.0.1338/src/testdir/test_vim9_disassemble.vim 2023-01-28 19:18:56.737720609 + --- src/testdir/test_vim9_disa

Patch 9.0.1338

2023-02-21 Fir de Conversatie Bram Moolenaar
Patch 9.0.1338 Problem::defcompile and :disassemble can't find class method. (Ernie Rael) Solution: Make a class name and class.method name work. (closes #11984) Files: src/vim.h, src/eval.c, src/structs.h, src/userfunc.c, src/proto/userfunc.pro, src/testdir/test_vim9_class

[patch] fixed typos in doc of vim-9.0.1337

2023-02-21 Fir de Conversatie Dominique Pellé
Hi The attached patch fixes several typos in Vim 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 thi

Patch 9.0.1337

2023-02-21 Fir de Conversatie Bram Moolenaar
Patch 9.0.1337 Problem:Yuck files are not recognized. Solution: Add a filetype pattern for yuck files. (Amaan Qureshi, closes #12033) Files: runtime/filetype.vim, src/testdir/test_filetype.vim *** ../vim-9.0.1336/runtime/filetype.vim2023-02-18 12:04:34.054087497

Patch 9.0.1336

2023-02-21 Fir de Conversatie Bram Moolenaar
Patch 9.0.1336 Problem:Functions without arguments are not always declared properly. Solution: Use "(void)" instead of "()". (Yegappan Lakshmanan, closes #12031) Files: src/channel.c, src/charset.c, src/clipboard.c, src/crypt.c, src/debugger.c, src/edit.c, src/ex_docmd.c, s

Patch 9.0.1335

2023-02-21 Fir de Conversatie Bram Moolenaar
Patch 9.0.1335 Problem:No test for bad use of spaces in help files. Solution: Add checks for use of spaces in help files. Ignore intentional spaces. (Hirohito Higashi, closes #11952) Files: src/testdir/test_codestyle.vim *** ../vim-9.0.1334/src/testdir/test_codestyle.vim

Patch 9.0.1334

2023-02-21 Fir de Conversatie Bram Moolenaar
Patch 9.0.1334 Problem:Using tt_member for the class leads to mistakes. Solution: Add a separate tt_class field. Files: src/structs.h, src/globals.h, src/vim9compile.c, src/vim9expr.c, src/vim9type.c, src/vim9class.c, src/evalfunc.c *** ../vim-9.0.1333/src/structs.h

sluggish processing of autocommands

2023-02-21 Fir de Conversatie Dave McCooey
Hello, I recently added the following autocommands to my _vimrc file: :hi ExtraWhiteSpace ctermbg=58 " Orange4 = #5f5f00 autocmd BufWinEnter,InsertLeave * syntax match ExtraWhiteSpace / \+\ze\t\|\t\zs \+\|^ \+\|\s\+$/ containedin=ALL autocmd InsertEnter * syntax match ExtraWhiteSpace / \+\ze\t\|