MSYS2 Build Gvim x86 fails cause of vim9.h since 8.2.3857

2021-12-20 Fir de Conversatie Ni Va
Hi, Under Win10 trying to build gvim x86 fails with Make_ming under MSYS2 since 8.2.3857. *# Build Command* cd $sourcePath/vim/src make -f Make_ming.mak clean FLAGS="OLE=yes GUI=yes XPM=no DIRECTx=yes DYNAMIC_LUA=yes LUA=./$LuaDir/src LUA_VER=54 PYTHON3=c:/Python310 DYNAMIC_PYTHON3=yes PYTHON

Re: Popup teminal background color

2021-12-20 Fir de Conversatie Blay263
[image: 2021-12-20_17-10-29.png] On Monday, December 20, 2021 at 5:11:05 PM UTC-5 Blay263 wrote: > My popup terminal now defaults to a black color, did the option to change > to match my colorscheme change? > > *call setwinvar(winid, '&wincolor', 'Special') * > > *FUNCTION:* > function! Flt_te

Re: [vim/vim] Not able to turn off colors by default using "set t_Co=0" (Issue #9377)

2021-12-20 Fir de Conversatie Gary Johnson
On 2021-12-20, lacygoill wrote: > Although, maybe Vim could set an internal flag when t_Co is manually set from > a > config file (like the vimrc), and respect whetever value it was set with, even > after receiving xterm's answer. I thought about that, but what about the situation where the user

Re: [vim/vim] Not able to turn off colors by default using "set t_Co=0" (Issue #9377)

2021-12-20 Fir de Conversatie Gary Johnson
On 2021-12-20, wgmayer0 wrote: > That worked - any clue why? I don't know all the details of what Vim gets from the terminfo database and what it sets internally, but if Vim thinks it's running in a terminal that supports the termresponse feature (see, e.g., ":help TermResponse"), it will send the

Re: [vim/vim] Not able to turn off colors by default using "set t_Co=0" (Issue #9377)

2021-12-20 Fir de Conversatie Gary Johnson
On 2021-12-20, wgmayer0 wrote: > autocmd VimEnter * ++once call timer_start(10, {-> execute('set t_Co=0')}) > > Weird... This way doesn't work Try putting this in your vimrc: set t_RV= I could replicate at least part of your issue and that fixed it for me. Regards, Gary -- -- You re

Re: Patch 8.2.3863

2021-12-20 Fir de Conversatie Tony Mechelynck
On Mon, Dec 20, 2021 at 11:14 PM Bram Moolenaar wrote: > > > Patch 8.2.3863 (after 8.2.3860) > Problem:Various build flags accidentally enabled. > Solution: Revert several lines in Makefile. > Files: src/Makefile > After applying this patch, the "many warnings" went away. Thanks! Best

Re: warnings from the compiler

2021-12-20 Fir de Conversatie Bram Moolenaar
Tony wrote: > On Mon, Dec 20, 2021 at 10:36 PM Bram Moolenaar wrote: > > > > > > > On Mon, Dec 20, 2021 at 5:43 PM tooth pik wrote: > > > > > > > > am i supposed to be getting (and ignoring?) a warning on make > > > > that _FORIFY_SOURCE requires compiling with optimization (-O) [-Wcpp] > > >

Patch 8.2.3863

2021-12-20 Fir de Conversatie Bram Moolenaar
Patch 8.2.3863 (after 8.2.3860) Problem:Various build flags accidentally enabled. Solution: Revert several lines in Makefile. Files: src/Makefile *** ../vim-8.2.3862/src/Makefile2021-12-20 15:03:23.251346520 + --- src/Makefile2021-12-20 22:10:38.542089353 + **

Popup teminal background color

2021-12-20 Fir de Conversatie Blay263
My popup terminal now defaults to a black color, did the option to change to match my colorscheme change? *call setwinvar(winid, '&wincolor', 'Special') * *FUNCTION:* function! Flt_term_win(cmd, width, height, border_highlight) abort let width = float2nr(&columns * a:width) let height

Re: warnings from the compiler

2021-12-20 Fir de Conversatie Tony Mechelynck
On Mon, Dec 20, 2021 at 10:58 PM Tony Mechelynck wrote: > > On Mon, Dec 20, 2021 at 10:36 PM Bram Moolenaar wrote: > > > > > > > On Mon, Dec 20, 2021 at 5:43 PM tooth pik wrote: > > > > > > > > am i supposed to be getting (and ignoring?) a warning on make > > > > that _FORIFY_SOURCE requires com

Re: warnings from the compiler

2021-12-20 Fir de Conversatie Tony Mechelynck
On Mon, Dec 20, 2021 at 10:36 PM Bram Moolenaar wrote: > > > > On Mon, Dec 20, 2021 at 5:43 PM tooth pik wrote: > > > > > > am i supposed to be getting (and ignoring?) a warning on make > > > that _FORIFY_SOURCE requires compiling with optimization (-O) [-Wcpp] > > > > > > > I confirm that after

Patch 8.2.3862

2021-12-20 Fir de Conversatie Bram Moolenaar
Patch 8.2.3862 Problem:Crash on exit with EXITFREE and using win_execute(). Solution: Also save and restore tp_topframe. (issue #9374) Files: src/evalwindow.c, src/testdir/test_execute_func.vim *** ../vim-8.2.3861/src/evalwindow.c2021-11-20 11:13:53.201671127 + --- src/evalwi

Re: warnings from the compiler

2021-12-20 Fir de Conversatie Bram Moolenaar
> On Mon, Dec 20, 2021 at 5:43 PM tooth pik wrote: > > > > am i supposed to be getting (and ignoring?) a warning on make > > that _FORIFY_SOURCE requires compiling with optimization (-O) [-Wcpp] > > > > I confirm that after applying patches 3857 to 3861, the compile step > for every single modu

Re: warnings from the compiler

2021-12-20 Fir de Conversatie Tony Mechelynck
On Mon, Dec 20, 2021 at 5:43 PM tooth pik wrote: > > am i supposed to be getting (and ignoring?) a warning on make > that _FORIFY_SOURCE requires compiling with optimization (-O) [-Wcpp] > I confirm that after applying patches 3857 to 3861, the compile step for every single module in all five fea

warnings from the compiler

2021-12-20 Fir de Conversatie tooth pik
am i supposed to be getting (and ignoring?) a warning on make that _FORIFY_SOURCE requires compiling with optimization (-O) [-Wcpp] -- -- 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:/

Patch 8.2.3861

2021-12-20 Fir de Conversatie Bram Moolenaar
Patch 8.2.3861 Problem:List of distributed files is outdated. Solution: Add new files. Files: Filelist *** ../vim-8.2.3860/Filelist2021-12-16 16:11:49.213060107 + --- Filelist2021-12-20 15:52:14.241762325 + *** *** 160,167 --- 160,170

Patch 8.2.3859

2021-12-20 Fir de Conversatie Bram Moolenaar
Patch 8.2.3859 Problem:Vim9: some code lines not tested. Solution: Add a few specific tests. Files: src/vim9compile.c, src/testdir/test_vim9_cmd.vim, src/errors.h, src/testdir/test_vim9_script.vim *** ../vim-8.2.3858/src/vim9compile.c 2021-12-20 10:55:31.772827340 +

Patch 8.2.3858

2021-12-20 Fir de Conversatie Bram Moolenaar
Patch 8.2.3858 Problem:Vim9: not enough tests. Solution: Add tests for :try/:catch and :redir. Add missing type check. Files: src/vim9compile.c, src/testdir/test_vim9_script.vim, src/testdir/test_vim9_cmd.vim *** ../vim-8.2.3857/src/vim9compile.c 2021-12-19 21:34:01.699

Patch 8.2.3857

2021-12-20 Fir de Conversatie Bram Moolenaar
Patch 8.2.3857 Problem:Vim9: inconsistent error for using function(). Solution: Use a runtime type check for the result of function(). (closes #8492) Files: src/evalfunc.c, src/testdir/test_vim9_builtin.vim *** ../vim-8.2.3856/src/evalfunc.c 2021-12-18 18:33:41.09534