Re: E254: Cannot allocate color Grey40

2016-08-07 Fir de Conversatie frantisek holop
please disregard my message, i cannot reproduce it anymore. -f -- the borg are coming! quick! try and look useless! -- -- 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

[patch] new style tests for signs + increased coverage

2016-08-07 Fir de Conversatie Dominique Pellé
Hi Attached patch converts sign tests to new style. It also increases coverage of sign tests. 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

Re: E254: Cannot allocate color Grey40

2016-08-07 Fir de Conversatie frantisek holop
frantisek holop, 07 Aug 2016 22:44: > E254: Cannot allocate color Grey40 > E254: Cannot allocate color Orange btw these colors are not in runtime/rgb.txt ... should they be? -f -- will global warming cancel nuclear winter? -- -- You received this message from the "vim_dev" maillist. Do not

E254: Cannot allocate color Grey40

2016-08-07 Fir de Conversatie frantisek holop
i succesfully compiled vim 7.4.2181 on openbsd but i am getting these "Cannot allocate color" errors after startup: $ gvim -u NONE -U NONE E254: Cannot allocate color Grey40 E254: Cannot allocate color Grey40 E254: Cannot allocate color Grey40 E254: Cannot allocate color Grey40 there has been

Re: [patch] test_glob2regpat.vim did not run + increased its coverage

2016-08-07 Fir de Conversatie Dominique Pellé
Dominique Pellé wrote: > Hi > > Test test_glob2regpat.vim does not run when running tests. > Attached patch fixes it. > > Patch also increases the coverage of test_glob2regpat.vim. > > Regards > Dominique Sorry, test_glob2regpat.vim was actually part of test_alot.vim. So it was running. So I

Re: Quickfix List vs Location List

2016-08-07 Fir de Conversatie Kent Sibilev
On Saturday, August 6, 2016 at 1:02:18 PM UTC-4, Bram Moolenaar wrote: > > The problem with this solution is that the names are translated. > A more direct solution would be better. > > The 'buftype' option is "quickfix" for both quickfix and location list. > We can't change that without causing

Re: Patch 7.4.2180

2016-08-07 Fir de Conversatie Bram Moolenaar
Dominique wrote: > Bram Moolenaar wrote: > > > Patch 7.4.2180 > > Problem:There is no easy way to stop all timers. There is no way to > > temporary pause a timer. > > Solution: Add timer_stopall() and timer_pause(). > > Files: src/evalfunc.c, src/ex_cmds2.c,

Re: Patch 7.4.2159

2016-08-07 Fir de Conversatie Dominique Pellé
Bram Moolenaar wrote: > Dominique Pellé wrote: > >> Bram Moolenaar wrote: >> >> > Patch 7.4.2159 >> > Problem:Insufficient testing for cscope. >> > Solution: Add more tests. (Dominique Pelle) >> > Files: src/testdir/test_cscope.vim >> >> Thanks. Looking at

Patch 7.4.2179

2016-08-07 Fir de Conversatie Bram Moolenaar
Patch 7.4.2179 (after 7.4.2178) Problem:Reading from stdin test fails on MS-Windows. Solution: Strip the extra space. Files: src/testdir/test_startup.vim *** ../vim-7.4.2178/src/testdir/test_startup.vim2016-08-07 16:36:26.718630005 +0200 --- src/testdir/test_startup.vim

Patch 7.4.2178

2016-08-07 Fir de Conversatie Bram Moolenaar
Patch 7.4.2178 Problem:No test for reading from stdin. Solution: Add a test. Files: src/testdir/test_startup.vim, src/testdir/shared.vim *** ../vim-7.4.2177/src/testdir/test_startup.vim2016-08-07 15:51:35.068558073 +0200 --- src/testdir/test_startup.vim2016-08-07

Patch 7.4.2177

2016-08-07 Fir de Conversatie Bram Moolenaar
Patch 7.4.2177 Problem:No testing for -C and -N command line flags, file arguments, startuptime. Solution: Add tests. Files: src/testdir/test_startup.vim, src/testdir/shared.vim *** ../vim-7.4.2176/src/testdir/test_startup.vim2016-08-06 23:03:55.790030629 +0200

Re: [patch] matchaddpos() should not be highlighted the end of line.

2016-08-07 Fir de Conversatie h_east
Hi Bram, 2016-8-7(Sun) 22:19:48 UTC+9 Bram Moolenaar: > Hirohito Higashi wrote: > > > This is a proposal. > > > > matchadd() and /\n can highlight end of line. > > Currently, matchaddpos() can do this too. > > > > I think, matchaddpos() should not do this. > > Because this function specified

Re: gvim and ASCII glyphs

2016-08-07 Fir de Conversatie manuelschiller.pimail via vim_dev
On Sunday, 7 August 2016 15:19:48 UTC+2, Bram Moolenaar wrote: > Manu Schiller wrote: > > Please let me know if it would be possible to include this, and if > > not, at least the patch is public now where people can find it if they > > want it. > > Let's hear from a few people whether this works

Re: [patch] Make main.c simpler

2016-08-07 Fir de Conversatie Bram Moolenaar
Ken Takata wrote: > I think that main() and vim_main2() in main.c are complicated and hard to > understand. The functions and ifdefs are tangled. > I think it's better to split main() and vim_main2() regardless of > FEAT_MZSCHEME. What do you think? Yes, that would avoid some uglyness.

Re: gvim and ASCII glyphs

2016-08-07 Fir de Conversatie Bram Moolenaar
Manu Schiller wrote: > On Monday, 19 October 2015 08:41:36 UTC+2, Hörmetjan Yiltiz wrote: > > On Sunday, 20 April 2014 11:55:22 UTC-4, François Gannaz wrote: > > > Hello > > > > > > In a few words, here is a patch that makes gvim work better with ligatures > > > in fonts, which can be useful

Patch 7.4.2176

2016-08-07 Fir de Conversatie Bram Moolenaar
Patch 7.4.2176 Problem:#ifdefs in main() are complicated. Solution: Always define vim_main2(). Move params to the file level. (suggested by Ken Takata) Files: src/main.c, src/structs.h, src/vim.h, src/if_mzsch.c, src/proto/if_mzsch.pro ***

Re: [patch] matchaddpos() should not be highlighted the end of line.

2016-08-07 Fir de Conversatie Bram Moolenaar
Hirohito Higashi wrote: > This is a proposal. > > matchadd() and /\n can highlight end of line. > Currently, matchaddpos() can do this too. > > I think, matchaddpos() should not do this. > Because this function specified position directory by user, it should be only > to highlight certain

Re: [patch] improved coverage of cscope tests

2016-08-07 Fir de Conversatie h_east
Hi Dominique, 2016年8-7(Sun) 9:35:09 UTC+9 Dominique Pelle: > On Fri, Aug 5, 2016 at 11:58 AM, h_east wrote: > > Hi, > > > > 2016-8-5(Fri) 18:31:14 UTC+9 Christian Brabandt: > >> Hi Dominique! > >> > >> On Do, 04 Aug 2016, Dominique Pellé wrote: > >> > >> > Attached patch

Patch 7.4.2175

2016-08-07 Fir de Conversatie Bram Moolenaar
Patch 7.4.2175 Problem:Insufficient testing of cscope. Solution: Add more tests. (Dominique Pelle) Files: src/testdir/test_cscope.vim *** ../vim-7.4.2174/src/testdir/test_cscope.vim 2016-08-05 21:25:26.050376229 +0200 --- src/testdir/test_cscope.vim 2016-08-07 13:59:50.063337679

Re: gvim and ASCII glyphs

2016-08-07 Fir de Conversatie manuelschiller.pimail via vim_dev
On Monday, 19 October 2015 08:41:36 UTC+2, Hörmetjan Yiltiz wrote: > On Sunday, 20 April 2014 11:55:22 UTC-4, François Gannaz wrote: > > Hello > > > > In a few words, here is a patch that makes gvim work better with ligatures > > in fonts, which can be useful even for programmers. Details

Patch 7.4.2174

2016-08-07 Fir de Conversatie Bram Moolenaar
Patch 7.4.2174 Problem:Adding duplicate flags to 'whichwrap' leaves commas behind. Solution: Also remove the commas. (Naruhiko Nishino) Files: src/Makefile, src/option.c, src/testdir/Make_all.mak, src/testdir/test_alot.vim, src/testdir/test_options.in,

Re: Adding duplicated flags to 'whichwrap', comma remains.

2016-08-07 Fir de Conversatie Bram Moolenaar
Naruhiko Nishino wrote: > > Do you have confirmed that the test to work? > > src/Makefile, src/testdir/Make_all.mak and src/testdir/test_alot.vim should > > be changed. > > > > src/Makefile > > The following line should delete from line 2034. > > test_options \ > > > > src/testdir/Make_all.mak