Re: [patch] 2 problems about job

2016-10-08 Fir de Conversatie Ozaki Kiichi
I updated patch. I'm wondering: In channel_close_on_error, when there is netbeans channel, channel_save writes to PART_OUT, but is this right? to PART_SOCK? -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For

Patch 8.0.0023

2016-10-08 Fir de Conversatie Bram Moolenaar
Patch 8.0.0023 Problem:"gd" and "gD" may find a match in a comment or string. Solution: Ignore matches in comments and strings. (Anton Lindqvist) Files: src/normal.c, src/testdir/test_goto.vim *** ../vim-8.0.0022/src/normal.c2016-09-11 16:52:37.0 +0200 ---

Re: [PATCH] Ignore comments when jumping to a declaration

2016-10-08 Fir de Conversatie Anton Lindqvist
Updated patch attach which adds support for skipping strings and characters that include the identifier. With the patch applied, pressing gd in the example below would end up on line 4 as opposed of line 3: int func(void) { char *s = "x"; // line #3 int x = 1; // line #4 return x;

Re: [patch] Behavior of autocmd BufNew with tabedit is strange

2016-10-08 Fir de Conversatie h_east
Hi Bram, 2016-10-8(Sat) 23:44:20 UTC+9 Bram Moolenaar: > Hirohito Higashi wrote: > > > How to reproduce: > > - Prepare the following script file > > $ cat sample.vim > > > > e aa.txt > > augroup sample > > autocmd! > > autocmd BufNew * tabedit cc.txt > > Hmm, starting to edit another

Re: [vim/vim] Quickfix: Problem if first pattern is an ignored multiline pattern (#1126)

2016-10-08 Fir de Conversatie Bram Moolenaar
> Lcd wrote: > > On 7 October 2016, Gerd Wachsmuth wrote: > > > The issue is that the multiline error is started by %W and ends with %Z > > > without adding any errors. > > In my opinion, it is not the issue that no `%C` is present: > > With > > > > set

Re: [patch] Behavior of autocmd BufNew with tabedit is strange

2016-10-08 Fir de Conversatie Bram Moolenaar
Hirohito Higashi wrote: > How to reproduce: > - Prepare the following script file > $ cat sample.vim > > e aa.txt > augroup sample > autocmd! > autocmd BufNew * tabedit cc.txt Hmm, starting to edit another file in a BufNew autocmd event is just asking for trouble. In general this should

[patch] Behavior of autocmd BufNew with tabedit is strange

2016-10-08 Fir de Conversatie h_east
Hi Bram and list, How to reproduce: - Prepare the following script file $ cat sample.vim e aa.txt augroup sample autocmd! autocmd BufNew * tabedit cc.txt augroup END normal! i1 tabedit bb.txt - Run vanilla Vim with above script file $ vim -Nu NONE -S sample.vim Expected behavior (I