Re: [vim/vim] Feature Request: mode() returns Insert sub-mode (#1397)

2017-01-22 Fir de Conversatie h_east
Try using the attached patch. `ins_compl_active()` should be referenced before referring to `ctrl_x_mode`. My patch's 'x' means "wait for CTRL-X mode selection". That is, when the following text is displayed on the last line. -- ^X mode (^]^D^E^F^I^K^L^N^O^Ps^U^V^Y) Thanks. -- Best

Re: Patch 8.0.0211

2017-01-22 Fir de Conversatie h_east
x100, 0x200, etc. we don't want to insert a NUL byte. >* Happens for CTRL-Vu9900. */ > if (buf[0] == 0) > buf[0] = '\n'; > + #else > + buf[0] = c; > + #endif [...] I think `defined(PROTO)` is unnecessary for `#if ~ #endif` which is completed within the

Re: [vim/vim] Feature Request: mode() returns Insert sub-mode (#1397)

2017-01-24 Fir de Conversatie h_east
mner of matches. "Searching_match_done" Searching match done. "popupmenued" Popup menu displayed. "inserted" Insert a match from the menu. "selected" Select a match in the menu. "ctrl_x_selecting"

Re: [vim/vim] Feature Request: mode() returns Insert sub-mode (#1397)

2017-01-20 Fir de Conversatie h_east
Hi Yegappan, 2017-1-21(Sat) 4:20:02 UTC+9 yega...@gmail.com: > Hi Hirohito, > > On Fri, Jan 20, 2017 at 7:44 AM, h_east <h.east@gmail.com> wrote: > > Hi Bram, Yegappan, Zhen and Vim developers, > > > > 2017-1-20(Fri) 12:44:50 UTC+9 vim-dev ML: > >&

[patch] :.tabnext count depends on the current line of the buffer

2017-01-29 Fir de Conversatie h_east
. h_east) -- -- 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 http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "

[patch] Remove "VimL" and like word from Vim source tree

2017-02-14 Fir de Conversatie h_east
using plugin techniques. It currently supports both reading and writing across networks using rcp, scp, ftp or ftp+<.netrc>, scp, fetch, dav/cadaver, rsync, or sftp. -- Best regards, Hirohito Higashi (a.k.a. h_east) -- -- You received this message from the "vim_dev" maillist. Do not t

Re: Patch 8.0.0308

2017-02-09 Fir de Conversatie h_east
$ ctags -R ctags: Warning: cannot open source file "testdir/top2_dir" : No such file or directory Attached patch fix this. -- Best regards, Hirohito Higashi (a.k.a. h_east) -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below

Re: [vim/vim] printf("%p") is useless (#1466)

2017-02-11 Fir de Conversatie h_east
Hi Nikolai, Excuse, This has nothing to do with the subject, will not you stop using `VimL`? GitHub ceased using VimL. See the attached image. -- Best regards, Hirohito Higashi (a.k.a. h_east) -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your r

Re: [vim/vim] Missing bracket in tex.vim (#1482)

2017-02-16 Fir de Conversatie h_east
> > Patch Links: > > https://github.com/vim/vim/pull/1482.patch > https://github.com/vim/vim/pull/1482.diff This issue has been already reported by me. and maintainer understood. I think that it will be fixed after a while. https://groups.google.com/d/topic/vim_dev/v8FfVAZcew

Re: [vim/vim] Missing bracket in tex.vim (#1482)

2017-02-16 Fir de Conversatie h_east
I created > this pull request. Vim is not locked in by GitHub. Bram manages the issue properly. Perhaps Bram is busy lately. Please wait for a while until the issue is fixed. (for a few days or weeks or months...) -- Best regards, Hirohito Higashi (a.k.a. h_east) -- -- You received this

Re: Patch 8.0.0325

2017-02-11 Fir de Conversatie h_east
r below this line */ > + /**/ > + 325, > /**/ Soy, again. My code is very bad. I modified it with the attached patch, so please include it. Please. Related thread. https://groups.google.com/d/topic/vim_dev/0z5sIxPz3CY/discussion I'm so sorry. -- Best regards, Hirohito Higashi (a

[patch] E11 message via Ex command is not translated

2017-02-11 Fir de Conversatie h_east
the translated message, it is necessary to prepare a file not attached as standard and set `:lang`. I wrote a patch. (attached) Check it out. NOTE: This issue was reported by Norio Takagi. https://github.com/vim-jp/issues/issues/1027 (in Japanese) -- Best regards, Hirohito Higashi (a.k.a. h_east

Re: [patch] E11 message via Ex command is not translated

2017-02-11 Fir de Conversatie h_east
Hi Bram and all, It has nothing to do with this patch, but why `e_zerocount` does not have an error number(E999)? Is this intentional? -- Best regards, Hirohito Higashi (a.k.a. h_east) -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your r

Re: [vim/vim] Feature Request: mode() returns Insert sub-mode (#1397)

2017-01-20 Fir de Conversatie h_east
essing or , mode() returns i. > > > > > > I agree it should be ix since it's a sub-mode. > > > > > > > An updated patch to return either "ix" or "Rx" is attached. [...] How about attached patch? -- Best regards, Hirohito Higashi (a.k.a. h_

Re: Patch 7.4.2228

2016-08-19 Fir de Conversatie h_east
cial? set shiftwidth=2 sts=2 expandtab I think that should be described in the runtime/indent/vim.vim decide them. That way you will not have to write a modeline to the test file. -- Best regards, Hirohito Higashi (a.k.a. h_east) -- -- You received this message from the "vim_dev" maillist

[new feature] :tab modifier's counter supports dollar and relative number

2016-08-21 Fir de Conversatie h_east
ter] specified by absolute or relative values, It will perform the range check. When it does out of range(0 ~ number of tabpages), error(E16) occurs. Check it and include please. -- Best regards, Hirohito Higashi (a.k.a. h_east) -- -- You received this message from the "vim_dev" mailli

Re: [patch] SEGV occurs in balloon_show() under certain circumstances.

2017-03-01 Fir de Conversatie h_east
Hi Ken, 2017-3-2(Thu) 12:26:38 UTC+9 Ken Takata: > Hi, > > 2017/3/2 Thu 11:52:29 UTC+9 h_east wrote: > > Hi Bram, > > > > How to reproduce (on Linux): > > - Go to Vim source directory > > $ cd /path/to/your/vim > > - Configure with enabling gui gn

[patch] SEGV occurs in balloon_show() under certain circumstances.

2017-03-01 Fir de Conversatie h_east
command. :call balloon_show("Hi") Expected behavior: - Nothing happens. (Or an error message is output?) Actual behavior: - SEGV Attached patch fixes this. -- Best regards, Hirohito Higashi (a.k.a. h_east) -- -- You received this message from the "vim_dev" maillist. Do not

Re: Patch 8.0.0375

2017-02-26 Fir de Conversatie h_east
[...] You are mistaking the contributor name. `Kazunobu Kuriyama` is correct. I think that it is better to modify it on runtime/doc/version8.txt -- Best regards, Hirohito Higashi (a.k.a. h_east) -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your re

[bug?][patch] Vim command completion is not performed, when expression register inserted

2016-09-02 Fir de Conversatie h_east
ck an attached patch. -- Best regards, Hirohito Higashi (a.k.a. h_east) -- -- 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 http://www.vim.org/maillist.php --- You received this mess

Re: [bug?][patch] Vim command completion is not performed, when expression register inserted

2016-09-05 Fir de Conversatie h_east
Hi Bram and developers! 2016-9-4(Sun) 22:40:41 UTC+9 h_east: > Hi Bram and developers, > > 2016-9-3(Sat) 21:52:42 UTC+9 Bram Moolenaar: > > Hirohito Higashi wrote: > > > > > How to reproduce: > > > - Prepare the following vim script file. > >

Re: [vim/vim] test_tabpage: Check in Test_tabpage_with_tab_modifier (#1042)

2016-09-05 Fir de Conversatie h_east
src/testdir/test_tabpage.vim > (2) > > > > Patch Links: > > https://github.com/vim/vim/pull/1042.patch > https://github.com/vim/vim/pull/1042.diff I am writer of Test_tabpage_with_tab_modifier(). Ah, You are right. Thanks for the follow up. -- Best regards,

[patch] SEGV when autocmd BufUnload with bwipe

2016-09-04 Fir de Conversatie h_east
h_bwipe.patch` check it out. I've also written test. --> `autocmd_bufunload_with_bwipe_test.patch` Unfortunately, it did not SEGV in the pre-patch binary :-/ NOTE: This issue was reported by Norio Takagi. (Thanks!) -- Best regards, Hirohito Higashi (a.k.a. h_east) -- -- You received t

Re: [patch] SEGV when autocmd BufUnload with bwipe

2016-09-04 Fir de Conversatie h_east
Hi Bram, 2016-9-4(Sun) 21:33:17 UTC+9 h_east: > Hi Bram and developers, > > I checked in 7.4.2321 > > Case 1 > How to reproduce: > - Create the following file: > $ cat sample1.vim > edit a.txt > augroup sample > autocmd! > autocmd BufUnload

Re: [bug?][patch] Vim command completion is not performed, when expression register inserted

2016-09-04 Fir de Conversatie h_east
with a test. > > Please check an attached patch. > > Isn't the problem that the completion is using ccline, but when getting > there from insert mode it's never set? So ccline.cmdfirstc is "=" > because of the previous command. Okay. I would try to more investigate. T

Re: [vim/vim] Syntax folding optimization (#1045)

2016-09-07 Fir de Conversatie h_east
. > > After: No wait after each input. Why you do not disclose the files, settings and operation using the test? And... I have to say every time, why not a written test? -- Best regards, Hirohito Higashi (a.k.a. h_east) -- -- You received this message from the "vim_dev" maill

Re: test popupmenu question

2016-09-11 Fir de Conversatie h_east
e selecting a > match") > > However, a total mystery is to me, when the test is run, it will > complete to > > , > | December2015 > | December2015 > | December2015 > ` Hmm?, I got the following result. (make test_popup in 7.4.2358) 1 FAILED: Found er

Re: Vim 8.0 released!

2016-09-12 Fir de Conversatie h_east
Hi Bram and Vim developers and users! Congrats!! I'll continue to write a patch in the future :-) -- Best regards, Hirohito Higashi (a.k.a. h_east) -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to

Re: [vim/vim] Fix systemlist() (#1135)

2016-09-29 Fir de Conversatie h_east
c/testdir/test_alot.vim 2016-09-30 10:00:40.479191900 +0900 > @@ -41,6 +41,7 @@ > source test_tagjump.vim > source test_timers.vim > source test_true_false.vim > +source test_system_func.vim > source test_unlet.vim > source test_window_cmd.vim > source test_options.vim --

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

2016-10-08 Fir de Conversatie h_east
cmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf) > > # ifdef FEAT_EVAL > > - || (bufref_valid() && !aborting())) > > + || (bufref_valid() && !aborting()) > > # else > > - || bufref_valid()) > > + || bufref_valid() > >

[patch] Behavior of autocmd BufNew with tabedit is strange

2016-10-08 Fir de Conversatie h_east
bufref_valid()) + || bufref_valid() # endif + ) #endif { #ifdef FEAT_SYN_HL -- Best regards, Hirohito Higashi (a.k.a. h_east) -- -- 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 inform

Re: [vim/vim] fix the order of lbuffer and lbottom to be compatible with help (#1093)

2016-09-18 Fir de Conversatie h_east
ch. I confirmed it becomes all systems green  Please check this. -- Best regards, Hirohito Higashi (a.k.a. h_east) -- -- 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 http://www.

Re: test popupmenu question

2016-09-21 Fir de Conversatie h_east
Hi ChrisBra, Bram and list! 2016-9-12(Mon) 2:56:04 UTC+9 Christian Brabandt: > On So, 11 Sep 2016, h_east wrote: > > > Hi ChrisBra, Bram and list, > > 2016-7-24(Sun) 0:36:14 UTC+9 Christian Brabandt: > > > On Sa, 23 Jul 2016, Bram Moolenaar wrote: > > > >

Re: test popupmenu question

2016-09-22 Fir de Conversatie h_east
Hi ChrisBra, Bram and list, 2016-9-23(Fri) 0:34:35 UTC+9 Christian Brabandt: > Hi, > > On Mi, 21 Sep 2016, h_east wrote: > > func! Test_popup_complete2() > > - " Insert match immediately, if there is only one match > > - " Should select a character fr

[Proposal][patch] Add `const` for reference only pointer C function argument

2016-09-20 Fir de Conversatie h_east
with the remaining of the work. -- Best regards, Hirohito Higashi (a.k.a. h_east) -- -- 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 http://www.vim.org/maillist.php --- You received this messa

[patch] fix document related to defaults.vim

2016-09-16 Fir de Conversatie h_east
Hi Bram and list, There is described in the document about the options that you changed in defaults.vim. But, some options are not described. I added some describe. Please check it out. -- Best regards, Hirohito Higashi (a.k.a. h_east) -- -- You received this message from the "vi

Re: [patch] fix document related to defaults.vim

2016-09-16 Fir de Conversatie h_east
> > Please check it out. > > Thanks. I think the remark in defaults.vim won't help much though. Well, Please change as your favorite :-) Thanks. -- Best regards, Hirohito Higashi (a.k.a. h_east) -- -- You received this message from the "vim_dev" maillist. Do not

Re: [vim/vim] fix the order of lbuffer and lbottom to be compatible with help (#1093)

2016-09-17 Fir de Conversatie h_east
ith help (and old vim) Nice catch! However, I +1 to fix the document. -- Best regards, Hirohito Higashi (a.k.a. h_east) -- -- 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 http://www.vim

[patch] test62.{in,ok} convert to the new style test `test_tabpage.vim`

2016-08-17 Fir de Conversatie h_east
Hi Bram and list, Attach a patch. Please include this. -- Best regards, Hirohito Higashi (a.k.a. h_east) -- -- 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 http://w

Re: Patch 7.4.2259

2016-08-26 Fir de Conversatie h_east
ito Higashi (a.k.a. h_east) -- -- 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 http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Go

[bug][patch] Unexpectedly preview window opened, after the `:ptjump` command canceled.

2016-08-23 Fir de Conversatie h_east
this. Sorry for without a test. Tell me if there is an easy way to test in the Vim script. -- Best regards, Hirohito Higashi (a.k.a. h_east) -- -- 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 informat

Re: Patch 7.4.2278

2016-08-28 Fir de Conversatie h_east
lt.vim) $ mv ~/.vimrc ~/.vimrc.orig - Start GVim $ gvim - Display help. :help - Go to half percentage in the help file. 50% - Cursor move to line 6 of window. (adjusted for 'scrolloff') H - Click top line of window by mouse. Behavior: - Click the line will be moved to the line 6. I think th

Re: Build 7.4.2243: Makefile:41: recipe for target 'report' failed

2016-08-23 Fir de Conversatie h_east
'help' but got 'text' > > Repeated 9 times. Tell me your Vim configuration. result of `:ver`. -- Best regards, Hirohito Higashi (a.k.a. h_east) -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying

Re: Build 7.4.2243: Makefile:41: recipe for target 'report' failed

2016-08-23 Fir de Conversatie h_east
Hi Elimar, 2016-8-23(Tue) 19:15:31 UTC+9 Elimar Riesebieter: > * h_east [2016-08-23 02:36 -0700]: > > > Hi Elimar, > > > > 2016-8-23(Tue) 18:28:18 UTC+9 Elimar Riesebieter: > > > Executed 162 tests¬ > > > 1 FAILED:¬ > &

Re: [vim/vim] Fix systemlist() (#1135)

2016-09-29 Fir de Conversatie h_east
2016-09-29 11:54:58.0 +0900 +++ vim/src/testdir/test_alot.vim 2016-09-30 10:00:40.479191900 +0900 @@ -41,6 +41,7 @@ source test_tagjump.vim source test_timers.vim source test_true_false.vim +source test_system_func.vim source test_unlet.vim source test_window_cmd.vim

Re: [vim/vim] Popup menu does not default to below the cursor (#1241)

2016-11-08 Fir de Conversatie h_east
- Best regards, Hirohito Higashi (a.k.a. h_east) -- -- 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 http://www.vim.org/maillist.php --- You received this message because yo

Re: Patch 8.0.0069

2016-11-06 Fir de Conversatie h_east
rn NULL; > > /* > --- 2625,2631 > /* >* If there is only one window there is nothing to remove. >*/ > ! if (tp == NULL ? ONE_WINDOW : tp->tp_firstwin == tp->tp_lastwin) > return NULL; > > /* > **

Re: [vim/vim] and can't be recognized in vimrc (#1239)

2016-11-07 Fir de Conversatie h_east
when I type {, I just get {} in insert mode. Perhaps the mapping command is do in vi-compatible mode. Let's confirm! Please add below two lines just before `:map :tabp` in your .vimrc and start Vim. And tell me the result of :messages echom 'compatible:' echom 'cpoptions:' -- Best r

Re: [vim/vim] and can't be recognized in vimrc (#1239)

2016-11-07 Fir de Conversatie h_east
ehavior you reported. Have you changed this option in debian.vim or /etc/vim/vimrc.local? Tentatively, I think that setting the mapping command later than line of `set nocompatible` will fix the problem. -- Best regards, Hirohito Higashi (a.k.a. h_east) -- -- You received this message from the

Re: [vim/vim] Directories raise "Error: no write since last change" (#893)

2016-11-10 Fir de Conversatie h_east
Hi Neil > How do I check the version? :echo g:loaded_netrwPlugin -- Best regards, Hirohito Higashi (a.k.a. h_east) -- -- 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 http:

Re: [vim/vim] Strange value of v:shell_error when calling system() with silent (#1196)

2016-11-07 Fir de Conversatie h_east
Hirohito Higashi (a.k.a. h_east) -- -- 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 http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Goog

Re: [bug][patch] matchaddpos() may not draw overldapped pos.

2016-10-14 Fir de Conversatie h_east
gt; > Thus, col (== 3) is less then mincol, and second pos is skipped. > > > > I think that the case of "col < mincol < col + len -1" should be also > > processed. > > > > [patch] > > > > https://gist.github.com/ichizok/f34c9018f5e9e452d3bc78cc9026

[patch] Add completion for :messages

2016-10-14 Fir de Conversatie h_east
Hi Bram and list, Type `:messages ` and push Tab key. None patched behavior: - Output Ctrl-I code :messages ^I Patched behavior: - Complete `clear` :messages clear Attach a patch. (Contains a test) Check it please. -- Best regards, Hirohito Higashi (a.k.a. h_east) -- -- You received

Re: [vim/vim] Fix #1168 completion problem from #875 (#1169)

2016-10-14 Fir de Conversatie h_east
You should add a test. -- Best regards, Hirohito Higashi (a.k.a. h_east) -- -- 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 http://www.vim.org/maillist.php --- You received th

Re: [vim/vim] Fix #1168 completion problem from #875 (#1169)

2016-10-14 Fir de Conversatie h_east
test fix is wellcome. -- Best regards, Hirohito Higashi (a.k.a. h_east) -- -- 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 http://www.vim.org/maillist.php --- You received this mes

Re: [patch] Add completion for :messages

2016-10-15 Fir de Conversatie h_east
Hi All, I update a patch. (Modified documents) -- Best regards, Hirohito Higashi (a.k.a. h_east) -- -- 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 http://www.vim.org/ma

Re: E315 ml_get invalid lnum

2016-10-17 Fir de Conversatie h_east
elated bugs. gvim -N -u NONE :e test2.tmp G :set scrolloff=5 :vert diffs test1.tmp P.S. Right-side scroll bar's relative position is strange. -- Best regards, Hirohito Higashi (a.k.a. h_east) -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your

Re: [vim/vim] Empty first tab lost when using sessions (#1282)

2016-11-25 Fir de Conversatie h_east
ne now shows foo.txt | [No Name]. Expected [No Name] | foo.txt | [No > Name]. I can reproduce it. And I wrote a patch for this issue. (Attached) Could you please check this patch? When issue has been resolved, I'll add a test later. -- Best regards, Hirohito Higashi (a.k.a. h_east) -- --

Re: [vim/vim] Empty first tab lost when using sessions (#1282)

2016-11-25 Fir de Conversatie h_east
contains 'blank', then also restores the empty window. -- Best regards, Hirohito Higashi (a.k.a. h_east) -- -- 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 http://www.vim.org/mai

Re: [PATCH] Incorrect cursor position on a long wrapped-line

2016-11-26 Fir de Conversatie h_east
th the whole test script should be named accordingly. Maybe we need a prefix? Bram and Vim contributors> How do you think? > * change to easily visible expected values of tests in test_breakindent.vim > > Thank you. -- Best regards, Hirohito Higashi (a.k.a. h_east) -- -- You re

[patch] `:tab drop xx` does not jump to existing xx window

2016-11-22 Fir de Conversatie h_east
o a document? or remove a code? -- Best regards, Hirohito Higashi (a.k.a. h_east) -- -- 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 http://www.vim.org/maillist.php --- You

[patch] make test error in SetUp() and TearDown() is hard to understand

2016-11-17 Fir de Conversatie h_east
[23]..TearDown, line 1 8< Check and include it please. -- Best regards, Hirohito Higashi (a.k.a. h_east) -- -- 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 http

Re: [vim/vim] Popup menu does not default to below the cursor (#1241)

2016-11-15 Fir de Conversatie h_east
busy now :-) -- Best regards, Hirohito Higashi (a.k.a. h_east) -- -- 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 http://www.vim.org/maillist.php --- You received this message because

Re: [vim/vim] Popup menu does not default to below the cursor (#1241)

2016-11-16 Fir de Conversatie h_east
t") call assert_equal(sort(['h test-col@en', 'h test-col@ab', \ 'h test-char@en', 'h test-char@ab']), sort(list)) Patch 2: Use `c_CTRL-A` instead of loops and `c_CTRL-B`. Attached patch: p2_maybe_fix_help_complete_problem.patch Patch 3: Use getcompletion() func

Re: [vim/vim] c file marco syntax error in 8.0.0086 (#1257)

2016-11-16 Fir de Conversatie h_east
Hi mattn and Bram, I found a line for which the addition of `\zs` is forgotten. Patch attached. -- Best regards, Hirohito Higashi (a.k.a. h_east) -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to

Re: Patch 8.0.0090

2016-11-18 Fir de Conversatie h_east
Windows console. Solution: Use getcompletion() instead of feedkeys() and command line completion. (Hirohito Higashi) 8< Anyway, I only report. -- Best regards, Hirohito Higashi (a.k.a. h_east) -- -- You received this message from the "vim_dev"

Re: [vim/vim] c file marco syntax error in 8.0.0086 (#1257)

2016-11-17 Fir de Conversatie h_east
yn region` where `contained` is specified. Because `\zs` is already in use at the higher level match. If we use it in `syn region contained`, the regular expression of the start= and the end= will not match. I wrote a patch. (Attached) Check it please. -- Best regards, Hirohito Higashi (a.k.a. h_

[patch] can not write a trail comment to the :hide command

2016-11-13 Fir de Conversatie h_east
ument' I wrote a patch. Of course contains a test. Check it please. -- Best regards, Hirohito Higashi (a.k.a. h_east) -- -- 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 htt

Re: [patch] can not write a trail comment to the :hide command

2016-11-15 Fir de Conversatie h_east
> I wrote a patch. Of course contains a test. > > Check it please. > > Can you add a test that does something like this: > > :hide echo "one|two" > > To check that the bar is not recognized to separate commands? Right, I added a test case. Check an attached patch

Re: [vim/vim] an action help language CTRL-] in tag.c fixed (#1249)

2016-11-12 Fir de Conversatie h_east
/* Prefer help tags according to 'helplang'. Put the TAB SPC SPC SPC SPC TAB SPC SPC SPC SPC It should be: TAB TAB SPC SPC SPC SPC -- Best regards, Hirohito Higashi (a.k.a. h_east) -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type you

[patch] Adjustment behavior of insert completion popupmenu with preview window

2016-11-04 Fir de Conversatie h_east
shi (a.k.a. h_east) -- -- 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 http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Gro

Re: [vim/vim] Vim hangs and segfaults with a scratch PHP buffer (#1200)

2016-10-26 Fir de Conversatie h_east
attached patch? -- Best regards,Hirohito Higashi (a.k.a. h_east) -- -- 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 http://www.vim.org/maillist.php --- You received this message b

Re: Patch 8.0.0047

2016-10-29 Fir de Conversatie h_east
uf->b_p_bh[0] == 'w') > { > *** ../vim-8.0.0046/src/version.c 2016-10-21 20:35:32.632943225 +0200 > --- src/version.c 2016-10-27 14:48:11.623357275 +0200 > *** > *** 766,767 > --- 766,769 > { /* Add new patch number below this line *

Re: Patch 8.0.0033

2016-10-16 Fir de Conversatie h_east
17:52:39.199701825 +0200 > --- src/version.c 2016-10-15 14:54:57.816912413 +0200 > *** > *** 766,767 > --- 766,769 > { /* Add new patch number below this line */ > + /**/ > + 33, > /**/ Regression occurred. When {pos} item specified a

Re: [vim/vim] Fix #1168 completion problem from #875 (#1169)

2016-10-17 Fir de Conversatie h_east
se they are called from the main loop. main loop ... Test_complete_add() feedkeys("i\\" ...) TestCompleteAdd() complete_add() complete_check() You don't understand about the asynchronous processing. -- Best regards, Hirohito Higashi (a.k.a. h_east) > &g

Re: [vim/vim] Exiting completion menu results in unexpected change (#1312)

2016-12-08 Fir de Conversatie h_east
yzzz > > > " zzzyyy > > > ``` > > > > > > I expected the buffer to not change since I exited the menu. Besides > > > `zzz` is inserted twice. > > > > Looks like a bug. I update a patch. Added a test. I

Re: [vim/vim] Inconsistent behavior of when pattern is not found (#1319)

2016-12-11 Fir de Conversatie h_east
o. How about this patch? (A patch is attached at vim_dev mailing list https://groups.google.com/d/forum/vim_dev) When patch is okay then I'll write a test later. -- Best regards, Hirohito Higashi (a.k.a. h_east) -- -- You received this message from the "vim_dev" maillist. Do not top

Re: [vim/vim] set complete ignores priority order (#1316)

2016-12-12 Fir de Conversatie h_east
ctively act on this proposal. But I also want to hear opinions from other people. Thanks. -- Best regards, Hirohito Higashi (a.k.a. h_east) -- -- 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,

Re: [vim/vim] Ordering of tags in result of taglist call. (#1194)

2016-12-07 Fir de Conversatie h_east
f the additions to the documentation? Or perhaps the > test I added is not registered as a test with the system? Yes. Your test is not running. See src/testdir/README.txt You are still only implementing 1). You need to implement 2) or later. Note: Typo in 2). s/.vim/.res/ -- Best regards, Hirohito Higa

Re: [vim/vim] Inconsistent behavior of when pattern is not found (#1319)

2016-12-11 Fir de Conversatie h_east
ito Higashi (a.k.a. h_east) -- -- 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 http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Go

Re: [vim/vim] set complete ignores priority order (#1316)

2016-12-11 Fir de Conversatie h_east
for complete() function. https://gist.github.com/heavenshell/119fc8cf2d43a36da31957b367e4665e This patch was written by Shinya Ohyanagi. Bram> How about this? If OK, I'll write the remaining patch and test. Thanks. -- Best regards, Hirohito Higashi (a.k.a. h_east) -- -- You received this me

Re: Patch 8.0.0181

2017-01-14 Fir de Conversatie h_east
-- 766,769 > { /* Add new patch number below this line */ > + /**/ > + 181, > /**/ Is the following patch correct? https://groups.google.com/d/msg/vim_dev/afsWQ48bfn0/xF-mCefjBwAJ -- Best regards, Hirohito Higashi (a.k.a. h_east) -- -- You received this message from the "vim_dev" ma

Re: Patch 8.0.0181

2017-01-14 Fir de Conversatie h_east
hi Bram, > It works for me. The following setting is no works. (set 'cursorline' without 'cursorcolumn') :set cursorbind cursorline nocursorcolumn -- Best regards, Hirohito Higashi (a.k.a. h_east) -- -- You received this message from the "vim_dev" maillist. Do not top-post! Ty

Re: Patch 8.0.0182

2017-01-14 Fir de Conversatie h_east
Hi Bram, Thanks for the correct fix! -- Best regards, Hirohito Higashi (a.k.a. h_east) -- -- 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 http://www.vim.org/maillist.php

Re: Patch 8.0.0181

2017-01-14 Fir de Conversatie h_east
Hi Bram, Here is a patch. (Attached) -- Best regards, Hirohito Higashi (a.k.a. h_east) -- -- 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 http://www.vim.org/maillist.php

Re: [PATCH] Incorrect cursor position on a long wrapped-line

2016-11-30 Fir de Conversatie h_east
Hi Kiichi and list, 2016-12-1(Thu) 12:03:09 UTC+9 Ozaki Kiichi: > I updated test patch; modified some test-function names. > > https://gist.github.com/ichizok/4d177e3bf8cc9d47d47243577c8d847b > > @h_east: > > > I think that file name and function names that can be used

Re: [patch] Fix document related command-line window

2016-12-30 Fir de Conversatie h_east
rence. > Please confirm. LGTM. -- Best regards,Hirohito Higashi (a.k.a. h_east) -- -- 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 http://www.vim.org/maillist.php --- You

Re: Patch 8.0.0148

2017-01-07 Fir de Conversatie h_east
Hi Bram, Ah, There is no problem because the function body is in front of the use point, right? -- Best regards, Hirohito Higashi (a.k.a. h_east) -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to

Re: Patch 8.0.0148

2017-01-07 Fir de Conversatie h_east
p); +static int cin_ispreproc_cont(char_u **pp, linenr_T *lnump, int *amount); static int cin_iscomment(char_u *); static int cin_islinecomment(char_u *); static int cin_isterminated(char_u *, int, int); -- Best regards, Hirohito Higashi (a.k.a. h_east) -- -- You received thi

[patch] Fix indentation bug of Preprocessor directive continuation line

2017-01-07 Fir de Conversatie h_east
s behavior occurs only outside of the curly bracket. I wrote a patch contains test. Sorry, it is still the old style test. I'll challenge it in this spring Check it out. NOTE 2: This issue was reported by Ken Takata. -- Best regards, Hirohito Higashi (a.k.a. h_east) -- -- You received this me

Re: [vim/vim] Failed to build from source - save_ccline (#1366)

2017-01-09 Fir de Conversatie h_east
[...] I have already reported it. https://groups.google.com/d/msg/vim_dev/e3sriv8HIUY/VdVTBSVPBgAJ -- Best regards, Hirohito Higashi (a.k.a. h_east) -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. Fo

Re: Patch 8.0.0159

2017-01-08 Fir de Conversatie h_east
rds, Hirohito Higashi (a.k.a. h_east) -- -- 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 http://www.vim.org/maillist.php --- You received this message because you are subscribed

[patch] Build error occurred with --with-features=small --enable-gui=gnome2 on Fedora

2017-01-08 Fir de Conversatie h_east
')' before '?' token # define ngettext(x, xs, n) (((n) == 1) ? (char *)(x) : (char *)(xs)) ^ Makefile:2971: recipe for target 'objects/gui_gtk.o' failed make[1]: *** [objects/gui_gtk.o] Error 1 make[1]: Leaving directory '/home/h_east/samba/github/vim/src' Makefile

Re: [patch] Build error occurred with --with-features=small --enable-gui=gnome2 on Fedora

2017-01-08 Fir de Conversatie h_east
Hi Kazunobu, 2017-1-9(Mon) 15:53:36 UTC+9 Kazunobu Kuriyama: > 2017-01-09 12:27 GMT+09:00 h_east <h.eas...@gmail.com>: > > > Hi Bram and list, > > > > A build error has occurred with the following configure on Fedora 23. > > > > $ make distclea

Re: [vim/vim] Fixed indentation of dec_cursor() function of src/misc2.c (#1313)

2016-12-07 Fir de Conversatie h_east
bly, I think that he judge by e-mail signature. -- Best regards, Hirohito Higashi (a.k.a. h_east) -- -- 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 http://www.vim.org/maillist.

Re: [vim/vim] Exiting completion menu results in unexpected change (#1312)

2016-12-07 Fir de Conversatie h_east
r my lack > of knowledge, and thank you very much for your work on Vim! Do not mind. I think my patch is correct. Maybe :-) And, Bram and other developers will judge the validity of this patch. -- Best regards, Hirohito Higashi (a.k.a. h_east) -- -- You received this message from the "vim_

Re: [vim/vim] Exiting completion menu results in unexpected change (#1312)

2016-12-07 Fir de Conversatie h_east
" > zzzyyyzzz > " zzzyyy > > > I expected the buffer to not change since I exited the menu. Besides zzz is > inserted twice. I can reproduce it. Please confirm attached patch. When confirming is okay, I'll write a test later. (May

Re: [patch] test_clientserver.vim and test_quotestar.vim fails in certain circumstances

2017-03-23 Fir de Conversatie h_east
tserver.vim 2017-03-22 22:19:57.761651837 +0100 > @@ -11,6 +11,12 @@ >if cmd == '' > return >endif > + try > +call serverlist() > + catch /E240:/ > +" No connection to the X server, give up. > +finish > + endtry > >let name

Re: [patch] test_clientserver.vim and test_quotestar.vim fails in certain circumstances

2017-03-23 Fir de Conversatie h_east
  Found errors in Test_client_server(): > >   First run: > >   function RunTheTest[24]..Test_client_server line 23: Pattern 'XVIMTEST' > does not match '' > >   Caught exception in Test_client_server(): Vim(call):E240: No connection to > the X server @ function RunTheTes

Re: [patch] test_clientserver.vim and test_quotestar.vim fails in certain circumstances

2017-03-25 Fir de Conversatie h_east
> >let name = 'XVIMTEST' > > > > let cmd .= ' --servername ' . name > > > > > > In my environment, `:call serverlist()` always succeed and returns the > > > empty string. > > > So, above patch does not change the situation. > > &g

<    1   2   3   4   5   6   7   >