[patch][win32] make `make tags` work

2017-09-01 Thread Ken Takata
Hi, On unix, `make tags` can be used for creating a tags file for the Vim source code. However this doesn't work well on Windows. Make_mvc.mak has tags target, but the options for ctags are missing. Make_cyg_ming.mak doesn't have tags target. Attached patch fixes them. Regards, Ken Takata --

Re: [vim/vim] :terminal NONE on Windows (#2045)

2017-09-01 Thread Yasuhiro MATSUMOTO
AFAIK, windows named pipe can't behave master and slave. Do you mind change key 'tty' to separated 'tty_in' and 'tty_out'? On UNIX, it should be same value. On 9/1/17, Bram Moolenaar wrote: > > Yasuhiro wrote: > >> @brammool If you have plan to spawn new process on the terminal NONE, >> we will h

www.vim.org looks like gone

2017-09-01 Thread Taro MURAOKA
Hi list and Bram. When I try to access www.vim.org, it returns 302 (redirect to) vim.sourceforge.io. > $ curl -I http://www.vim.org > HTTP/1.1 302 Found > Server: nginx > Date: Fri, 01 Sep 2017 15:16:22 GMT > Content-Type: text/html; charset=iso-8859-1 > Connection: keep-alive > Location: https:/

Re: www.vim.org looks like gone

2017-09-01 Thread James McCoy
On Sep 1, 2017 11:22, "Taro MURAOKA" wrote: Hi list and Bram. When I try to access www.vim.org, it returns 302 (redirect to) vim.sourceforge.io. > $ curl -I http://www.vim.org > HTTP/1.1 302 Found > Server: nginx > Date: Fri, 01 Sep 2017 15:16:22 GMT > Content-Type: text/html; charset=iso-8859-

Re: Patch 8.0.1006

2017-09-01 Thread Yegappan Lakshmanan
Hi, On Thu, Aug 31, 2017 at 11:58 AM, Bram Moolenaar wrote: > > Lcd47 wrote: > >> On 27 August 2017, Bram Moolenaar wrote: >> > >> > Patch 8.0.1006 >> > Problem:Cannot parse text with 'erroformat' without changing a quickfix >> > list. >> > Solution: Add the "text" argument to

Re: Patch 8.0.1006

2017-09-01 Thread Yegappan Lakshmanan
Hi, On Fri, Sep 1, 2017 at 8:37 AM, Yegappan Lakshmanan wrote: > Hi, > > On Thu, Aug 31, 2017 at 11:58 AM, Bram Moolenaar wrote: >> >> Lcd47 wrote: >> >>> On 27 August 2017, Bram Moolenaar wrote: >>> > >>> > Patch 8.0.1006 >>> > Problem:Cannot parse text with 'erroformat' without changing a

Quickfix/Location list identifier feature

2017-09-01 Thread Yegappan Lakshmanan
Hi all, Patch 8.0.1023 added supported for the quickfix list identifier. Now each quickfix and location list can be uniquely identified. This is needed because the quickfix list number in the quickfix stack is not unique and can change as new quickfix lists are added. A Vim plugin that asynchron

Re: Patch 8.0.1006

2017-09-01 Thread Justin M. Keyes
On Sep 1, 2017 03:13, "James McCoy" wrote: On Thu, Aug 31, 2017 at 10:36:34PM +0300, LCD 47 wrote: > On 31 August 2017, Yegappan Lakshmanan wrote: > > You can check for a particular patch [has("patch-8.0.1006")]. > [...] > > Yes, but that has its own set of problems, one of the main ones > b

Re: www.vim.org looks like gone

2017-09-01 Thread Taro MURAOKA
> On Sep 1, 2017 11:22, "Taro MURAOKA" wrote: > Hi list and Bram. > > > > When I try to access www.vim.org, > > it returns 302 (redirect to) vim.sourceforge.io. > > > > > $ curl -I http://www.vim.org > > > HTTP/1.1 302 Found > > > Server: nginx > > > Date: Fri, 01 Sep 2017 15:16:22 GMT >

Patch 8.0.1031

2017-09-01 Thread Bram Moolenaar
Patch 8.0.1031 Problem:"text" argument for getqflist() is confusing. (Lcd47) Solution: Use "lines" instead. (Yegappan Lakshmanan) Files: runtime/doc/eval.txt, src/quickfix.c, src/testdir/test_quickfix.vim *** ../vim-8.0.1030/runtime/doc/eval.txt2017-08-30 20:33:51.

Re: Patch 8.0.1006

2017-09-01 Thread Bram Moolenaar
Yegappan wrote: > On Thu, Aug 31, 2017 at 11:58 AM, Bram Moolenaar wrote: > > > > Lcd47 wrote: > > > >> On 27 August 2017, Bram Moolenaar wrote: > >> > > >> > Patch 8.0.1006 > >> > Problem:Cannot parse text with 'erroformat' without changing a > >> > quickfix > >> > list. > >>

Patch 8.0.1032

2017-09-01 Thread Bram Moolenaar
Patch 8.0.1032 Problem:"make tags" doesn't work well on MS-Windows. Solution: Add or fix tags target. (Ken Takata) Files: src/Make_cyg_ming.mak, src/Make_mvc.mak *** ../vim-8.0.1031/src/Make_cyg_ming.mak 2017-08-23 22:40:37.165363011 +0200 --- src/Make_cyg_ming.mak 2017-0

Re: [patch][win32] make `make tags` work

2017-09-01 Thread Bram Moolenaar
Ken Takata wrote: > On unix, `make tags` can be used for creating a tags file for the Vim source > code. > However this doesn't work well on Windows. Make_mvc.mak has tags target, but > the options for ctags are missing. Make_cyg_ming.mak doesn't have tags > target. > Attached patch fixes the

Re: Quickfix/Location list identifier feature

2017-09-01 Thread Bram Moolenaar
Yegappan wrote: > Patch 8.0.1023 added supported for the quickfix list identifier. Now > each quickfix and location list can be uniquely identified. This is > needed because the quickfix list number in the quickfix stack is not > unique and can change as new quickfix lists are added. A Vim plug

Re: www.vim.org looks like gone

2017-09-01 Thread Bram Moolenaar
Taro Muraoka wrote: > > On Sep 1, 2017 11:22, "Taro MURAOKA" wrote: > > Hi list and Bram. > > > > > > > > When I try to access www.vim.org, > > > > it returns 302 (redirect to) vim.sourceforge.io. > > > > > > > > > $ curl -I http://www.vim.org > > > > > HTTP/1.1 302 Found > > > > > Serv

Re: www.vim.org looks like gone

2017-09-01 Thread Christian J. Robinson
On Fri, 1 Sep 2017, Bram Moolenaar wrote: The domain name "www.vim.org" is not displayed in the address bar of the browser. I think that that is not a small problem. Unfortunately, so long as this is hosted on sourceforge this is the only way. The certificate is for sourceforge.io. Moving

Patch 8.0.1033

2017-09-01 Thread Bram Moolenaar
Patch 8.0.1033 Problem:Detecting background color does not work in screen, even when it is working like an xterm. Solution: Make "screen.xterm" use termcap entries like an xterm. (Lubomir Rintel, closes #2048) When termresponse version is huge also recogn

Re: www.vim.org looks like gone

2017-09-01 Thread Bram Moolenaar
Christian J. Robinson wrote: > On Fri, 1 Sep 2017, Bram Moolenaar wrote: > > >> The domain name "www.vim.org" is not displayed in the address bar > >> of > >> the browser. I think that that is not a small problem. > > > > Unfortunately, so long as this is hosted on sourceforge this is the only

Re: [vim/vim] :terminal NONE on Windows (#2045)

2017-09-01 Thread Bram Moolenaar
Yasuhiro Matsumoto wrote: > AFAIK, windows named pipe can't behave master and slave. Do you mind > change key 'tty' to separated 'tty_in' and 'tty_out'? On UNIX, it > should be same value. If we can make it more portable, that is always welcome. But it might be difficult (impossible?) to connec

Re: 8.0.995 still fails tests on macOS

2017-09-01 Thread Manuel Ortega
On Saturday, August 26, 2017 at 9:50:18 AM UTC-4, Bram Moolenaar wrote: > Manuel Ortega wrote: > > > Still failing on macOS: > > > > From test_terminal.vim: > > Found errors in Test_terminal_noblock(): > > function RunTheTest[24]..Test_terminal_noblock line 21: Pattern 'done' does > > not match '

Re: 8.0.995 still fails tests on macOS

2017-09-01 Thread Manuel Ortega
On Friday, August 25, 2017 at 6:53:23 PM UTC-4, Manuel Ortega wrote: > Still failing on macOS: > > > From test_terminal.vim: > Found errors in Test_terminal_noblock(): > function RunTheTest[24]..Test_terminal_noblock line 21: Pattern 'done' does > not match 'ccecho > ccc

Re: [patch][win32] make `make tags` work

2017-09-01 Thread Tony Mechelynck
On Fri, Sep 1, 2017 at 6:41 PM, Bram Moolenaar wrote: > > Ken Takata wrote: > >> On unix, `make tags` can be used for creating a tags file for the Vim source >> code. >> However this doesn't work well on Windows. Make_mvc.mak has tags target, but >> the options for ctags are missing. Make_cyg_m

Re: www.vim.org looks like gone

2017-09-01 Thread MURAOKA Taro
2017-09-02 2:17 GMT+09:00 Bram Moolenaar : > > Taro Muraoka wrote: > >> > On Sep 1, 2017 11:22, "Taro MURAOKA" wrote: >> > Hi list and Bram. >> > >> > >> > >> > When I try to access www.vim.org, >> > >> > it returns 302 (redirect to) vim.sourceforge.io. >> > >> > >> > >> > > $ curl -I http://www.v

Re: [patch][win32] make `make tags` work

2017-09-01 Thread Ken Takata
Hi Tony, 2017/9/2 Sat 6:36:41 UTC+9 Tony Mechelynck wrote: > On Fri, Sep 1, 2017 at 6:41 PM, Bram Moolenaar wrote: > > > > Ken Takata wrote: > > > >> On unix, `make tags` can be used for creating a tags file for the Vim > >> source code. > >> However this doesn't work well on Windows. Make_mvc.

Re: Quickfix/Location list identifier feature

2017-09-01 Thread Yegappan Lakshmanan
Hi Bram, On Fri, Sep 1, 2017 at 9:50 AM, Bram Moolenaar wrote: > > Yegappan wrote: > >> Patch 8.0.1023 added supported for the quickfix list identifier. Now >> each quickfix and location list can be uniquely identified. This is >> needed because the quickfix list number in the quickfix stack is