Re: [vim/vim] Ability to clear only one type of cmdline history (Issue #9622)

2022-01-24 Fir de Conversatie Yegappan Lakshmanan
Hi, On Mon, Jan 24, 2022 at 7:09 PM zeertzjq wrote: > *Is your feature request about something that is currently impossible or > hard to do? Please describe the problem.* > > AFAIK there is currently no way to clear only one type of cmdline history > (e.g. debug mode history only) without clear

Patch 8.2.4212

2022-01-24 Fir de Conversatie Bram Moolenaar
Patch 8.2.4212 (after 8.2.4208) Problem:Window title test still fails in some configurations. Solution: Explicitly set the 'title' option. Files: src/testdir/test_functions.vim *** ../vim-8.2.4211/src/testdir/test_functions.vim 2022-01-24 22:16:32.917176813 + --- src/testdi

Patch 8.2.4211

2022-01-24 Fir de Conversatie Bram Moolenaar
Patch 8.2.4211 (after 8.2.4208) Problem:Window title test still fails in some configurations. Solution: Use WaitForAssert(). Files: src/testdir/test_functions.vim *** ../vim-8.2.4210/src/testdir/test_functions.vim 2022-01-24 22:02:11.789104325 + --- src/testdir/test_functio

Patch 8.2.4210

2022-01-24 Fir de Conversatie Bram Moolenaar
Patch 8.2.4210 (after 8.2.4208) Problem:Window title test fails in some configurations. Solution: Only run the test if the title can be obtained. Files: src/testdir/test_functions.vim *** ../vim-8.2.4209/src/testdir/test_functions.vim 2022-01-24 20:00:51.899507349 + --- src

Patch 8.2.4209

2022-01-24 Fir de Conversatie Bram Moolenaar
Patch 8.2.4209 Problem:partial in 'opfunc' cannot use an imported function. Solution: Also expand the function name in a partial. (closes #9614) Files: src/evalvars.c, src/testdir/test_vim9_import.vim *** ../vim-8.2.4208/src/evalvars.c 2022-01-23 17:59:01.226173123 + --- src

Patch 8.2.4208

2022-01-24 Fir de Conversatie Bram Moolenaar
Patch 8.2.4208 Problem:Using setbufvar() may change the window title. Solution: Do not redraw when creating the autocommand window. (closes #9613) Files: src/autocmd.c, src/testdir/test_functions.vim *** ../vim-8.2.4207/src/autocmd.c 2022-01-07 15:45:13.495500428 + --- src/

Patch 8.2.4207

2022-01-24 Fir de Conversatie Bram Moolenaar
Patch 8.2.4207 (after 8.2.4206) Problem:Recursion test fails with MSVC. Solution: Use a smaller limit for MSVC. Files: src/eval.c *** ../vim-8.2.4206/src/eval.c 2022-01-24 18:16:08.740970105 + --- src/eval.c 2022-01-24 18:33:05.310781849 + *** *** 3554,3561

Patch 8.2.4206

2022-01-24 Fir de Conversatie Bram Moolenaar
Patch 8.2.4206 Problem:Condition with many "(" causes a crash. Solution: Limit recursion to 1000. Files: src/errors.h, src/eval.c, src/testdir/test_eval_stuff.vim *** ../vim-8.2.4205/src/errors.h2022-01-21 20:37:02.283408897 + --- src/errors.h2022-01-24 18:08:10.9

Patch 8.2.4205

2022-01-24 Fir de Conversatie Bram Moolenaar
Patch 8.2.4205 Problem:The normal_cmd() function is too long. Solution: Move parts to separate functions. (Yegappan Lakshmanan, closes #9608) Files: src/normal.c *** ../vim-8.2.4204/src/normal.c2022-01-20 20:18:23.661848798 + --- src/normal.c2022-01-24

Patch 8.2.4204

2022-01-24 Fir de Conversatie Bram Moolenaar
Patch 8.2.4204 Problem:screenpos() has non-zero row for invisible text. Solution: Only add the window row when the text is visible. (closes #9618) Files: src/move.c, src/testdir/test_cursor_func.vim *** ../vim-8.2.4203/src/move.c 2021-12-27 17:21:38.012449123 + --- src/move.c 2

Patch 8.2.4203

2022-01-24 Fir de Conversatie Bram Moolenaar
Patch 8.2.4203 Problem:Entering a character with CTRL-V may include modifiers. Solution: Reset "mod_mask" when entering a character with digits after CTRL-V. (closes #9610) Files: src/edit.c, src/testdir/test_edit.vim *** ../vim-8.2.4202/src/edit.c 2022-01-15 18:25:04.66

Patch 8.2.4202

2022-01-24 Fir de Conversatie Bram Moolenaar
Patch 8.2.4202 Problem:Vim9: cannot export function that exists globally. Solution: When checking if a function already exists only check for script-local functions. (closes #9615) Files: src/userfunc.c, src/proto/userfunc.pro, src/vim.h, src/vim9compile.c, src

Patch 8.2.4201

2022-01-24 Fir de Conversatie Bram Moolenaar
Patch 8.2.4201 Problem:When using the GUI CTRL-Z does not stop gvim. Solution: When using the GUI set SIGTSTP to SIG_DFL. (Andrew Maltsev, closes #9570) Files: src/os_unix.c *** ../vim-8.2.4200/src/os_unix.c 2022-01-23 16:41:10.643957425 + --- src/os_unix.c

Re: RFC: Support for v:vim.opt dictionary to access vim options

2022-01-24 Fir de Conversatie Bram Moolenaar
Yegappan wrote: > Currently Vim options can be accessed from a Vim script by prefixing the > option name with a '&': > > let &shiftwidth = 2 > let oldval = &shiftwidth > > The Python Vim interface supports a dictionary for accessing the Vim options > https://vimhelp.org/if_pyth.txt.html#python

Patch 8.2.4200

2022-01-24 Fir de Conversatie Bram Moolenaar
Patch 8.2.4200 Problem:Some tests do not clean up properly. Solution: Delete created files. (Yegappan Lakshmanan, closes #9611) Files: src/testdir/test_filetype.vim, src/testdir/test_messages.vim, src/testdir/test_vim9_import.vim *** ../vim-8.2.4199/src/testdir/test_filet

Patch 8.2.4199

2022-01-24 Fir de Conversatie Bram Moolenaar
Patch 8.2.4199 Problem:MS-Windows: Support for MSVC 2003 is not useful. Solution: Remove the exceptions for MSVC 2003. (Ken Takata, closes #9616) Files: src/GvimExt/gvimext.h, src/ex_docmd.c, src/feature.h, src/gui_w32.c, src/if_cscope.c, src/if_ole.cpp, src/if_ruby.c,

Re: [vim/vim] `set cursorline` makes code syntax colors gone (Issue #9617)

2022-01-24 Fir de Conversatie Maxim Kim
понедельник, 24 января 2022 г. в 13:04:16 UTC+3, cbl...@256bit.org: > > > Yes I remember something like that. What I don't know, is that something > that should be fixed by vim core or should the colorscheme generally > define/not define the Normal highlighting group? > > Don't know. > > Ho

Re: [vim/vim] `set cursorline` makes code syntax colors gone (Issue #9617)

2022-01-24 Fir de Conversatie Christian Brabandt
On Mo, 24 Jan 2022, Maxim Kim wrote: > Basically, the issue is fairly simple to reproduce (cmd.exe, windows): > > 1. `vim -Nu NONE` > 2. `set tgc` > 3. `set cursorline` > 4. `set ft=vim` > 5. `syntax on` > 6. `iecho "hello world"` > > we can see syntax under cursorline > > 7. ` colo indu

Re: [vim/vim] `set cursorline` makes code syntax colors gone (Issue #9617)

2022-01-24 Fir de Conversatie Maxim Kim
Basically, the issue is fairly simple to reproduce (cmd.exe, windows): 1. `vim -Nu NONE` 2. `set tgc` 3. `set cursorline` 4. `set ft=vim` 5. `syntax on` 6. `iecho "hello world"` we can see syntax under cursorline 7. ` colo industry` ^^^ no syntax highlighting And it boils down to whether

Re: [vim/vim] `set cursorline` makes code syntax colors gone (Issue #9617)

2022-01-24 Fir de Conversatie Maxim Kim
https://vi.stackexchange.com/questions/31881/how-do-i-make-sure-terminal-vim-has-syntax-highlighting-with-cursorline-and-t понедельник, 24 января 2022 г. в 12:13:10 UTC+3, Maxim Kim: > It is a "known" issue with windows cmd and 'termguicolors'. > > > понедельник, 24 января 2022 г. в 11:55:56 U

Re: [vim/vim] `set cursorline` makes code syntax colors gone (Issue #9617)

2022-01-24 Fir de Conversatie Maxim Kim
It is a "known" issue with windows cmd and 'termguicolors'. понедельник, 24 января 2022 г. в 11:55:56 UTC+3, Christian Brabandt: > that sounds more like a problem with your colorscheme > > — > Reply to this email directly, view it on GitHub >