Windows vim.exe honors all gui settings but StatusLine

2017-11-19 Fir de Conversatie Axel Bender
Window's vim.exe (running in the Windows Console) exhibits the following odd behavior with "termguicolors" set: all color settings (only gui* defintions are used) are honored except for "StatusLine"'s. Given the following definition: >>> highlight! StatusLine guifg=#66 guibg=#E0E0E0

Re: Patch 8.0.1302

2017-11-19 Fir de Conversatie Yegappan Lakshmanan
Hi Bram, On Sun, Nov 19, 2017 at 11:38 AM, Bram Moolenaar wrote: > > Yegappan wrote: > >> I forgot to add test_textformat.res to the src/testdir/Make_all.mak >> file. Can you update this file? > > I'll do that. Should have a test that all tests are run... > I found a few other tests missing fro

Patch 8.0.1322

2017-11-19 Fir de Conversatie Bram Moolenaar
Patch 8.0.1322 Problem:Textformat test isn't run. (Yegappan Lakshmanan) Solution: Add target to the list of tests. Files: src/testdir/Make_all.mak *** ../vim-8.0.1321/src/testdir/Make_all.mak2017-11-16 21:52:07.651021800 +0100 --- src/testdir/Make_all.mak2017-11-19 20:35:58.1

Re: Patch 8.0.1302

2017-11-19 Fir de Conversatie Bram Moolenaar
Yegappan wrote: > I forgot to add test_textformat.res to the src/testdir/Make_all.mak > file. Can you update this file? I'll do that. Should have a test that all tests are run... -- hundred-and-one symptoms of being an internet addict: 13. You refer to going to the bathroom as downloading.

Patch 8.0.1321

2017-11-19 Fir de Conversatie Bram Moolenaar
Patch 8.0.1321 Problem:Can't build huge version with Athena. (Mark Kelly) Solution: Move including beval.h to before structs.h. Include beval.pro like other proto files. Files: src/vim.h, src/beval.h, src/proto.h *** ../vim-8.0.1320/src/vim.h 2017-11-18 22:13:04.75390864

Re: build error: unknown type name BalloonEval

2017-11-19 Fir de Conversatie Bram Moolenaar
Dominique wrote: > M Kelly wrote: > > > On Sunday, November 19, 2017 at 10:07:51 AM UTC-5, M Kelly wrote: > >> Hi, > >> > >> Apologies if this was already posted - > >> > >> I have a build error with latest master: > >> > >> In file included from vim.h:1816:0, > >> from buffer.

Patch 8.0.1320

2017-11-19 Fir de Conversatie Bram Moolenaar
Patch 8.0.1320 Problem:Popup test fails on GUI-only build. Solution: Don't test balloon_split() when it's not available. Files: src/testdir/test_popup.vim *** ../vim-8.0.1319/src/testdir/test_popup.vim 2017-11-19 19:56:21.613895033 +0100 --- src/testdir/test_popup.vim 2017-11-19 20

Re: 8.0.1275 causes excessive output

2017-11-19 Fir de Conversatie Bram Moolenaar
Manuel Ortega wrote: > Patch 8.0.1275 has broken vim. > > Start up vim (with or without --clean, etc.) and do > >edit ~/.profile | lcd %:h > > Expected behavior: Vim puts .profile in the buffer, and in the cmdline I see > >"~/.profile" 178L, 6171C > > Since the offending patch, whene

Patch 8.0.1319

2017-11-19 Fir de Conversatie Bram Moolenaar
Patch 8.0.1319 Problem:Can't build GUI on MS-Windows. Solution: Don't define the balloon_split() function in a GUI-only build. Files: src/evalfunc.c, runtime/doc/eval.txt *** ../vim-8.0.1318/src/evalfunc.c 2017-11-19 19:56:21.609895094 +0100 --- src/evalfunc.c 2017-11-19 20:

Patch 8.0.1318

2017-11-19 Fir de Conversatie Bram Moolenaar
Patch 8.0.1318 Problem:Terminal balloon only shows one line. Solution: Split into several lines in a clever way. Add balloon_split(). Make balloon_show() accept a list in the terminal. Files: src/popupmnu.c, src/proto/popupmnu.pro, src/evalfunc.c, src/beval.c, s

Re: Patch 8.0.1302

2017-11-19 Fir de Conversatie Yegappan Lakshmanan
Hi Bram, I forgot to add test_textformat.res to the src/testdir/Make_all.mak file. Can you update this file? Thanks, Yegappan On Thu, Nov 16, 2017 at 12:53 PM, Bram Moolenaar wrote: > > Patch 8.0.1302 > Problem:Still too many old style tests. > Solution: Convert a few more tests to new st

8.0.1275 causes excessive output

2017-11-19 Fir de Conversatie Manuel Ortega
Patch 8.0.1275 has broken vim. Start up vim (with or without --clean, etc.) and do edit ~/.profile | lcd %:h Expected behavior: Vim puts .profile in the buffer, and in the cmdline I see "~/.profile" 178L, 6171C Since the offending patch, whenever I do this command, Vim also sees fit to s

Re: build error: unknown type name BalloonEval

2017-11-19 Fir de Conversatie Dominique Pellé
M Kelly wrote: > On Sunday, November 19, 2017 at 10:07:51 AM UTC-5, M Kelly wrote: >> Hi, >> >> Apologies if this was already posted - >> >> I have a build error with latest master: >> >> In file included from vim.h:1816:0, >> from buffer.c:28: >> structs.h:3126:5: error: unknown

Re: [bug] heap-use-after-free with asan when running test_terminal.vim

2017-11-19 Fir de Conversatie Dominique Pellé
Bram Moolenaar wrote: > Dominique wrote: > >> I configured Vim-8.0.1316 as follows and built with asan: >> >> $ CC=gcc-7 ./configure --with-features=huge \ >> --enable-gui=gtk3 --enable-python3interp=yes \ >> --enable-pythoninterp=yes >> >> I built with asan with these local changes: >> >> $

Re: build error: unknown type name BalloonEval

2017-11-19 Fir de Conversatie M Kelly
On Sunday, November 19, 2017 at 10:07:51 AM UTC-5, M Kelly wrote: > Hi, > > Apologies if this was already posted - > > I have a build error with latest master: > > In file included from vim.h:1816:0, > from buffer.c:28: > structs.h:3126:5: error: unknown type name ‘BalloonEval’

build error: unknown type name BalloonEval

2017-11-19 Fir de Conversatie M Kelly
Hi, Apologies if this was already posted - I have a build error with latest master: In file included from vim.h:1816:0, from buffer.c:28: structs.h:3126:5: error: unknown type name ‘BalloonEval’ BalloonEval *tip; /* tooltip for this menu item */ thx, mark -- -- You

Re: [PATCH v2] viminfo: always enforce viminfo with mode 0600

2017-11-19 Fir de Conversatie Simon Ruderich
On Wed, Nov 15, 2017 at 10:08:47PM +0100, Bram Moolenaar wrote: >> However all that is totally unrelated to the issue the patch >> mentioned above tries to fix! (My sentence "It's required to fix >> the race condition." wasn't perfectly precise, the patch doesn't >> fix the race condition, it only

Patch 8.0.1317

2017-11-19 Fir de Conversatie Bram Moolenaar
Patch 8.0.1317 Problem:Accessing freed memory in term_wait(). (Dominique Pelle) Solution: Check that the buffer still exists. Files: src/terminal.c *** ../vim-8.0.1316/src/terminal.c 2017-11-18 18:51:08.125770701 +0100 --- src/terminal.c 2017-11-19 14:56:08.298506311 +0100 *

Re: [bug] heap-use-after-free with asan when running test_terminal.vim

2017-11-19 Fir de Conversatie Bram Moolenaar
Dominique wrote: > I configured Vim-8.0.1316 as follows and built with asan: > > $ CC=gcc-7 ./configure --with-features=huge \ > --enable-gui=gtk3 --enable-python3interp=yes \ > --enable-pythoninterp=yes > > I built with asan with these local changes: > > $ git diff > diff --git a/src/Make