Re: Patch 8.0.1824

2018-05-12 Fir de Conversatie Cesar Romani
I'm compiling vim on Windows 7 with MinGW-W64, gcc 7.2.0. I get some warnings: gcc -c -Iproto -DWIN32 [...] -o gobjZi686/terminal.o terminal.c: In function 'term_and_job_init': terminal.c:5504:30: warning: passing argument 2 of 'build_argv_from_string' from incompatible poi

Re: Request for runtime file updates

2018-05-12 Fir de Conversatie Bram Moolenaar
Christian wrote: > On Sa, 12 Mai 2018, Bram Moolenaar wrote: > > > I am planning the 8.1 release really soon, hopefully the coming week. > > If you have any pending change to plugins, translations, etc., please > > send them now. > > Anything we can do to have Vim 8.1 distributed with some more

Patch 8.0.1826

2018-05-12 Fir de Conversatie Bram Moolenaar
Patch 8.0.1826 Problem:Configure uses old compiler flag. Solution: Remove _DARWIN_C_SOURCE. (Kazunobu Kuriyama) Files: src/configure.ac, src/auto/configure *** ../vim-8.0.1825/src/configure.ac2018-04-19 20:39:34.459728423 +0200 --- src/configure.ac2018-05-12 21:36:16.775684931

Re: [Patch] Remove _DARWIN_C_SOURCE from CPPFLAGS for macOS

2018-05-12 Fir de Conversatie Bram Moolenaar
Kazunobu Kuriyama wrote: > With Patch 8.0.1709 (2e324950b) that enforced C89, _DARWIN_C_SOURCE was > introduced in CPPFLAGS for macOS, but forgotten to be removed by Patch > 8.0.1717 (3cba73423) that reverted 8.0.1709. Attached is a patch to fix it. Thanks! -- User: I'm having problems

Patch 8.0.1825

2018-05-12 Fir de Conversatie Bram Moolenaar
Patch 8.0.1825 Problem:Might use NULL pointer when out of memory. (Coverity) Solution: Handle NULL pointer better. Files: src/getchar.c *** ../vim-8.0.1824/src/getchar.c 2018-05-01 18:47:52.992188456 +0200 --- src/getchar.c 2018-05-12 21:21:40.459595008 +0200 *

Patch 8.0.1824

2018-05-12 Fir de Conversatie Bram Moolenaar
Patch 8.0.1824 Problem:Coverity warns for variable that may be uninitialized. Solution: Initialize the variable. Files: src/terminal.c *** ../vim-8.0.1823/src/terminal.c 2018-05-12 20:36:20.837984312 +0200 --- src/terminal.c 2018-05-12 21:14:15.538571673 +0200 **

Patch 8.0.1823

2018-05-12 Fir de Conversatie Bram Moolenaar
Patch 8.0.1823 Problem:Test for terminal stdout redirection is flaky. Solution: Wait for the job to finish. Files: src/testdir/test_terminal.vim *** ../vim-8.0.1822/src/testdir/test_terminal.vim 2018-05-12 17:42:38.737075919 +0200 --- src/testdir/test_terminal.vim 2018-05

Re: Request for runtime file updates

2018-05-12 Fir de Conversatie Christian Brabandt
On Sa, 12 Mai 2018, Bram Moolenaar wrote: > I am planning the 8.1 release really soon, hopefully the coming week. > If you have any pending change to plugins, translations, etc., please > send them now. Anything we can do to have Vim 8.1 distributed with some more colorschemes? (forgot the actu

Re: [Patch] Fix 'make uninstall_runtime'

2018-05-12 Fir de Conversatie Bram Moolenaar
Kazunobu Kuriyama wrote: > Patches 8.0.1395 (ee219b0e9) and 8.0.1400 (8ee2d36e2) introduced > runtime/colors/tools/check_colors.vim, and Patch 8.0.1788 (dddab90d2) > updated installrtbase to install it in $VIMRUNTIME/colors/tools/ but forgot > to update uninstall_runtime likewise at that time. B

Patch 8.0.1822

2018-05-12 Fir de Conversatie Bram Moolenaar
Patch 8.0.1822 Problem:Make uninstall does not remove colors/tools. Solution: Add a line to delete the tools directory. (Kazunobu Kuriyama) Files: src/Makefile *** ../vim-8.0.1821/src/Makefile2018-05-02 22:00:12.567590266 +0200 --- src/Makefile2018-05-12 21:02:43.02320

Re: New XML ftplugin files

2018-05-12 Fir de Conversatie Bram Moolenaar
Christian wrote: > > > On Do, 10 Mai 2018, Bram Moolenaar wrote: > > > > > > > > On Mi, 09 Mai 2018, Bram Moolenaar wrote: > > > > > > > > > > > Thanks, I can include them. > > > > > > > > > > > > For the xmlformat file, we would need some help entry with an > > > > > > example. > > > > > >

Re: New XML ftplugin files

2018-05-12 Fir de Conversatie Christian Brabandt
On Sa, 12 Mai 2018, Bram Moolenaar wrote: > > Christian wrote: > > > On Do, 10 Mai 2018, Bram Moolenaar wrote: > > > > > > On Mi, 09 Mai 2018, Bram Moolenaar wrote: > > > > > > > > > Thanks, I can include them. > > > > > > > > > > For the xmlformat file, we would need some help entry with an

Patch 8.0.1821

2018-05-12 Fir de Conversatie Bram Moolenaar
Patch 8.0.1821 Problem:Cursor in terminal window moves when pressing CTRL-W. (Dominique Pelle) Solution: Do not more the cursor or redraw when not in Terminal-Normal mode. (closes #2904) Files: src/terminal.c *** ../vim-8.0.1820/src/terminal.c 2018-05-12 1

[Patch] Fix 'make uninstall_runtime'

2018-05-12 Fir de Conversatie Kazunobu Kuriyama
Hi, Patches 8.0.1395 (ee219b0e9) and 8.0.1400 (8ee2d36e2) introduced runtime/colors/tools/check_colors.vim, and Patch 8.0.1788 (dddab90d2) updated installrtbase to install it in $VIMRUNTIME/colors/tools/ but forgot to update uninstall_runtime likewise at that time. Because of that, 'make uninstal

[Patch] Remove _DARWIN_C_SOURCE from CPPFLAGS for macOS

2018-05-12 Fir de Conversatie Kazunobu Kuriyama
Hi, With Patch 8.0.1709 (2e324950b) that enforced C89, _DARWIN_C_SOURCE was introduced in CPPFLAGS for macOS, but forgotten to be removed by Patch 8.0.1717 (3cba73423) that reverted 8.0.1709. Attached is a patch to fix it. Best regards, Kazunobu -- -- You received this message from the "vim_

Patch 8.0.1820

2018-05-12 Fir de Conversatie Bram Moolenaar
Patch 8.0.1820 Problem:Terminal window redirecting stdout does not show stderr. (Matéo Zanibelli) Solution: When stdout is not connected to pty_master_fd then use it for stderr. (closes #2903) Files: src/os_unix.c, src/testdir/test_terminal.vim *** ../vim-8.0.1

Re: Filtering quickfix and location list entries

2018-05-12 Fir de Conversatie Yegappan Lakshmanan
Hi, On Sun, Apr 29, 2018 at 10:31 PM, Yegappan Lakshmanan wrote: > Hi all, > > Should we add an optional plugin (under pack/dist/opt) that adds > commands to filter quickfix and location list entries? Previously I > sent a patch to add these as native commands (#830). But it was > suggested to ad

Patch 8.0.1819

2018-05-12 Fir de Conversatie Bram Moolenaar
Patch 8.0.1819 Problem:Swap file warning for a file in a non-existing directory, if there is another with the same file name. (Juergen Weigert) Solution: When expanding the file name fails compare the file names. Files: src/testdir/test_swap.vim, src/memline.c *** ../vim-8

Patch 8.0.1818

2018-05-12 Fir de Conversatie Bram Moolenaar
Patch 8.0.1818 (after 8.0.1810) Problem:Lines remove from wrong buffer when using terminal window. Solution: Make sure to use tl_buffer. Files: src/terminal.c *** ../vim-8.0.1817/src/terminal.c 2018-05-11 22:01:47.085458061 +0200 --- src/terminal.c 2018-05-12 16:40:11.885592

Patch 8.0.1817

2018-05-12 Fir de Conversatie Bram Moolenaar
Patch 8.0.1817 Problem:A timer may change v:count unexpectedly. Solution: Save and restore v:count and similar variables when a timer callback is invoked. (closes #2897) Files: src/eval.c, src/proto/eval.pro, src/ex_cmds2.c, src/structs.h, src/testdir/test_timers

Request for runtime file updates

2018-05-12 Fir de Conversatie Bram Moolenaar
I am planning the 8.1 release really soon, hopefully the coming week. If you have any pending change to plugins, translations, etc., please send them now. -- TIM: That is not an ordinary rabbit ... 'tis the most foul cruel and bad-tempered thing you ever set eyes on. ROBIN: You tit. I

Patch 8.0.1816

2018-05-12 Fir de Conversatie Bram Moolenaar
Patch 8.0.1816 Problem:No test for setcmdpos(). Solution: Add a test. (Dominique Pelle, closes #2901) Files: src/testdir/test_cmdline.vim *** ../vim-8.0.1815/src/testdir/test_cmdline.vim2018-05-01 19:23:40.777975258 +0200 --- src/testdir/test_cmdline.vim2018-05-12 13:

Re: New XML ftplugin files

2018-05-12 Fir de Conversatie Bram Moolenaar
Christian wrote: > On Do, 10 Mai 2018, Bram Moolenaar wrote: > > > > On Mi, 09 Mai 2018, Bram Moolenaar wrote: > > > > > > > Thanks, I can include them. > > > > > > > > For the xmlformat file, we would need some help entry with an example. > > > > > > Will add one. Generally the documentation