Re: Patch 8.1.1276

2019-05-06 Thread Christ van Willegen
Hi, On Sun, May 5, 2019 at 3:48 PM Bram Moolenaar wrote: > Patch 8.1.1276 > > *** ../vim-8.1.1275/runtime/doc/eval.txt2019-05-04 17:34:30.653353882 > +0200 > --- runtime/doc/eval.txt2019-05-05 15:09:25.625993792 +0200 > *** > *** 7166,7171 > --- 7218,7226 >

Various small textual changes

2019-05-06 Thread Christ van Willegen
Hi Bram, I wanted to fix a few small textual errors in the Vim source. I contacted the last known maintainers for several files (at least twice), but have received no answer, or the mails bounced. I have no experience in the maintenance of the plugins, and am not a native speaker of the languages

Re: Update .gitignore

2019-05-06 Thread Christian Brabandt
On So, 05 Mai 2019, Bram Moolenaar wrote: > > Ken Takata wrote: > > > I think `src/po/LINGUAS` should be ignored: > > > > --- a/.gitignore > > +++ b/.gitignore > > @@ -67,6 +67,7 @@ src/xxd/xxd.dSYM > > *.pyc > > *.log > > src/po/vim.pot > > +src/po/LINGUAS > > > > # Generated by "make

Re: Patch 8.1.1267

2019-05-06 Thread Bram Moolenaar
> On Sat, May 04, 2019 at 05:35:06PM +0200, Bram Moolenaar wrote: > > > > Patch 8.1.1267 > > Problem:Cannot check if GPM mouse support is working. > > Solution: Add the "mouse_gpm_enable" feature. > > Files: src/evalfunc.c, src/os_unix.c, src/proto/os_unix.pro, > > run

Re: Update .gitignore

2019-05-06 Thread Bram Moolenaar
Christian wrote: > On So, 05 Mai 2019, Bram Moolenaar wrote: > > > Ken Takata wrote: > > > > > I think `src/po/LINGUAS` should be ignored: > > > > > > --- a/.gitignore > > > +++ b/.gitignore > > > @@ -67,6 +67,7 @@ src/xxd/xxd.dSYM > > > *.pyc > > > *.log > > > src/po/vim.pot > > > +src/po

Re: Patch 8.1.1276

2019-05-06 Thread Bram Moolenaar
Christ van Willegen wrote: > On Sun, May 5, 2019 at 3:48 PM Bram Moolenaar wrote: > > Patch 8.1.1276 > > > > *** ../vim-8.1.1275/runtime/doc/eval.txt2019-05-04 > > 17:34:30.653353882 +0200 > > --- runtime/doc/eval.txt2019-05-05 15:09:25.625993792 +0200 > > *** > > *

Re: Update .gitignore

2019-05-06 Thread Christian Brabandt
On Mo, 06 Mai 2019, Bram Moolenaar wrote: > > I actually have an .hgignore file, but it is not included in the git > repo, because it conflicts with the .gitignore file. There was a > discusison about this in the past. I am not sure how it can conflict with the .gitignore file. Since you alre

Test coverage increased to above 80%

2019-05-06 Thread Bram Moolenaar
This is a very nice accomplishment! Over time more and more tests have been added. The best indication of test coverage is on codecov.io, which has been steadily going up over the past year: https://codecov.io/gh/vim/vim/ Special thanks to Yegappan Lakshmanan and Dominic Pellé, who gave the Vi

Re: Update .gitignore

2019-05-06 Thread Bram Moolenaar
Christian wrote: > On Mo, 06 Mai 2019, Bram Moolenaar wrote: > > > > I actually have an .hgignore file, but it is not included in the git > > repo, because it conflicts with the .gitignore file. There was a > > discusison about this in the past. > > I am not sure how it can conflict with the

Patch 8.1.1283

2019-05-06 Thread Bram Moolenaar
Patch 8.1.1283 Problem:Delaying half a second after the top-bot message. Solution: Instead of the delay add "W" to the search count. Files: src/search.c *** ../vim-8.1.1282/src/search.c2019-05-05 13:02:05.655655369 +0200 --- src/search.c2019-05-06 21:35:18.297971857 +

Re: Various small textual changes

2019-05-06 Thread Bram Moolenaar
Christ van Willegen wrote: > I wanted to fix a few small textual errors in the Vim source. I > contacted the last known maintainers for several files (at least > twice), but have received no answer, or the mails bounced. > > I have no experience in the maintenance of the plugins, and am not a >

Re: [vim/vim] Native vim support for displaying search match index like `[n of N]` (#4317)

2019-05-06 Thread Bram Moolenaar
> On Sunday, May 5, 2019 at 4:07:29 PM UTC-4, Bram Moolenaar wrote: > > > > > After this merge, I experience a noticeable decrease in responsiveness > > > > > compared to an earlier version, when a search hits TOP/BOTTOM and > > > > > continues on the other end of a large document. > > > > > > >

Patch 8.1.1284

2019-05-06 Thread Bram Moolenaar
Patch 8.1.1284 Problem:Detecting *.tmpl as htmlcheetah is outdated. Solution: Use the generic name "template". (closes #4348) Files: runtime/filetype.vim, src/testdir/test_filetype.vim *** ../vim-8.1.1283/runtime/filetype.vim2019-04-19 23:32:45.193715199 +0200 --- runtime/fi

Re: Update .gitignore

2019-05-06 Thread Christian Brabandt
On Mo, 06 Mai 2019, Bram Moolenaar wrote: > > Christian wrote: > > > On Mo, 06 Mai 2019, Bram Moolenaar wrote: > > > > > > I actually have an .hgignore file, but it is not included in the git > > > repo, because it conflicts with the .gitignore file. There was a > > > discusison about this i

Patch 8.1.1285

2019-05-06 Thread Bram Moolenaar
Patch 8.1.1285 Problem:Test17 is old style. Solution: Turn into new style test. (Yegappan Lakshmanan, closes #4347) Files: src/Makefile, src/testdir/Make_all.mak, src/testdir/Make_vms.mms, src/testdir/test17.in, src/testdir/test17.ok, src/testdir/test17a.in, src

Re: Patch 8.1.1283

2019-05-06 Thread Christian Brabandt
On Mo, 06 Mai 2019, Bram Moolenaar wrote: > Patch 8.1.1283 > Problem:Delaying half a second after the top-bot message. > Solution: Instead of the delay add "W" to the search count. > Files:src/search.c I think we need to increase the allocated length of the msgbuf by 2 in sea

Re: Patch 8.1.1262

2019-05-06 Thread John Marriott
On 04-May-2019 23:48, Bram Moolenaar wrote: Patch 8.1.1262 Problem:Cannot simulate a mouse click in a test. Solution: Add test_setmouse(). Files: src/evalfunc.c, runtime/doc/eval.txt, runtime/doc/usr_41.txt After this patch HP_UX throws this error, if FEAT_MOUSE is not defined:    

Patch 8.1.1286

2019-05-06 Thread Bram Moolenaar
Patch 8.1.1286 Problem:Running tests leaves XTest_tabpage_cmdheight file behind. Solution: Delete the right file. (closes #4350) Files: src/testdir/test_tabpage.vim *** ../vim-8.1.1285/src/testdir/test_tabpage.vim2019-05-01 20:30:19.598426336 +0200 --- src/testdir/test_tabpa

Re: Found errors in Test_term_mouse_double_click_to_create_tab():

2019-05-06 Thread Ralf Schandl
On 03.05.19 13:56, Elimar Riesebieter wrote: Hi, compiling v8.1.1250 within a remote tmux session I get: Found errors in Test_term_mouse_double_click_to_create_tab(): function RunTheTest[40]..Test_term_mouse_double_click_to_create_tab line 38: ttymouse=xterm2: Expected 32 but got 0 function

Re: [vim/vim] Native vim support for displaying search match index like `[n of N]` (#4317)

2019-05-06 Thread mannyvimdev
On Monday, May 6, 2019 at 3:37:43 PM UTC-4, Bram Moolenaar wrote: > > On Sunday, May 5, 2019 at 4:07:29 PM UTC-4, Bram Moolenaar wrote: > > > > > > After this merge, I experience a noticeable decrease in > > > > > > responsiveness > > > > > > compared to an earlier version, when a search hits TOP/