shellescape should no be judge with ssl

2008-07-06 Thread Yasuhiro MATSUMOTO
Maybe, few user's vim does not work by this changes. -- - Yasuhiro Matsumoto --~--~-~--~~~---~--~~ You received this message from the "vim_dev" maillist. For more information, visit http://www.vim.org/maillist.php -~--~~~~--~~--~--~---

Re: Improvements to "libcall" etc.

2008-07-06 Thread Yasuhiro MATSUMOTO
I am guessing we >> need to have a way to have a "thunk" which is passed to the C code in >> the DLL, but which when called knows where to vector to. > > > It's certainly how I'd do it in Windows. I don't know enough about SO's > under Linux/Mac. &

some multi-byte is treated as K_SPECIAL in command line

2009-01-13 Thread Yasuhiro MATSUMOTO
dlen, src, i); + dlen += i; + src += i; } -# endif - else - result[dlen++] = *src; - ++src; } } result[dlen] = NUL; -- - Yasuhiro Matsumoto --~--~-~--~~~---~--~~ You received this

Re: some multi-byte is treated as K_SPECIAL in command line

2009-01-13 Thread Yasuhiro MATSUMOTO
len] = NUL; -- On Tue, Jan 13, 2009 at 8:01 PM, Yasuhiro MATSUMOTO wrote: > Hi. bram and all. > > I found a bug about treating multi-byte and special characters in command > line. > ex: > :set enc=utf-8 > :command! SubJapanesePeriodToDot %s/。/./g > > "。" m

Re: some multi-byte is treated as K_SPECIAL in command line

2009-01-13 Thread Yasuhiro MATSUMOTO
= i; + src += i; } +#endif } result[dlen] = NUL; On Tue, Jan 13, 2009 at 8:18 PM, Yasuhiro MATSUMOTO wrote: > oops. the patch have a bug. please check following. > > Index: src/term.c > === > --- src

Re: some multi-byte is treated as K_SPECIAL in command line

2009-01-13 Thread Yasuhiro MATSUMOTO
14, 2009 at 1:46 AM, Tony Mechelynck wrote: > On 13/01/09 16:31, Bram Moolenaar wrote: >> >> Yasuhiro Matsumoto wrote: >> >>> Hi. bram and all. >>> >>> I found a bug about treating multi-byte and special characters in command >>> line. &

shell quote shouldn't depend on shellslash on windows.

2009-01-13 Thread Yasuhiro MATSUMOTO
; *p != NUL; ) { # if defined(WIN32) || defined(WIN16) || defined(DOS) - if (!p_ssl) + if (!ssl) { if (*p == '"') { @@ -1378,7 +1389,7 @@ /* add terminating quote and finish with a NUL */ # if defined(WI

Re: some multi-byte is treated as K_SPECIAL in command line

2009-01-13 Thread Yasuhiro MATSUMOTO
Oops. sorry. However, the problem happen with the script as your said. :-) Thanks. On Wed, Jan 14, 2009 at 2:03 PM, Tony Mechelynck wrote: > On 14/01/09 01:18, Yasuhiro MATSUMOTO wrote: >> >> Hi, Tony. >> >> Yes it's "full width full stop&quo

Re: shell quote shouldn't depend on shellslash on windows.

2009-01-14 Thread Yasuhiro MATSUMOTO
On Wed, Jan 14, 2009 at 5:55 PM, Tony Mechelynck wrote: > > On 14/01/09 03:03, Yasuhiro MATSUMOTO wrote: >> Hi all. >> >> It seems that quoting arguments of shebang command depend on shellslash. >> but on windows, cmd.exe or command.com can't treat single quo

Re: some multi-byte is treated as K_SPECIAL in command line

2009-01-14 Thread Yasuhiro MATSUMOTO
Bram, please check third patch from me. :-) see below as descriptions. http://groups.google.co.jp/group/vim_dev/browse_thread/thread/e9945dbdd6ab388f?hl=ja#455ac73ba4bb0e47 - Yasuhiro Matsumoto On Wed, Jan 14, 2009 at 6:00 PM, Tony Mechelynck wrote: > > On 14/01/09 09:54, Dominique

Re: shell quote shouldn't depend on shellslash on windows.

2009-01-14 Thread Yasuhiro MATSUMOTO
On Wed, Jan 14, 2009 at 6:51 PM, Yasuhiro MATSUMOTO wrote: > On Wed, Jan 14, 2009 at 5:55 PM, Tony Mechelynck > wrote: >> >> On 14/01/09 03:03, Yasuhiro MATSUMOTO wrote: >>> Hi all. >>> >>> It seems that quoting arguments of shebang command depend

Re: shell quote shouldn't depend on shellslash on windows.

2009-01-14 Thread Yasuhiro MATSUMOTO
Yes thats all. thanks On 1/15/09, Tony Mechelynck wrote: > On 14/01/09 22:13, Bram Moolenaar wrote: >> >> Yasuhiro Matsumoto wrote: >> >>> On Wed, Jan 14, 2009 at 6:51 PM, Yasuhiro MATSUMOTO >>> wrote: >>>> On Wed, Jan 14, 2009 at 5:55 PM, To

rubypath should be global in ftplugin/ruby.vim

2009-01-14 Thread Yasuhiro MATSUMOTO
s:rubypath = '.,' . substitute(s:rubypath, '\%(^\|,\)\.\%(,\|$\)', ',,', '') +let rubypath = '.,' . substitute(rubypath, '\%(^\|,\)\.\%(,\|$\)', ',,', '') else " If we can't call ruby to get its path, j

function executable() is too slow on windows

2009-01-29 Thread Yasuhiro MATSUMOTO
FALSE; if (mch_isdir(fname)) return FALSE; -- - Yasuhiro Matsumoto --~--~-~--~~~---~--~~ You received this message from the "vim_dev" maillist. For more information, visit http://www.vim.org/maillist.php -~--~~~~--~~--~--~---

Re: function executable() is too slow on windows

2009-01-29 Thread Yasuhiro MATSUMOTO
oops. - function executable() is too slow on windows. it seems that using SearchPath() API. SearchPath() tries following sequence if lpPath was set NULL. - On Fri, Jan 30, 2009 at 3:12 PM, Yasuhiro MATSUMOTO wrote: > Hi, bram and all. > >

Re: function executable() is too slow on windows

2009-01-29 Thread Yasuhiro MATSUMOTO
Hmm. current directory was skipped with my patch. On Fri, Jan 30, 2009 at 3:17 PM, Yasuhiro MATSUMOTO wrote: > oops. > > - > function executable() is too slow on windows. it seems that using > SearchPath() API. > SearchPath() tries following sequence if l

Re: function executable() is too slow on windows

2009-01-29 Thread Yasuhiro MATSUMOTO
MATSUMOTO wrote: > Hmm. current directory was skipped with my patch. > > On Fri, Jan 30, 2009 at 3:17 PM, Yasuhiro MATSUMOTO > wrote: >> oops. >> >> - >> function executable() is too slow on windows. it seems that using >> SearchPath() API. &

Re: regexp_nfa should be specify end of stack.

2013-05-20 Thread Yasuhiro MATSUMOTO
> To unsubscribe from this group and stop receiving emails from it, send an > email to vim_dev+unsubscr...@googlegroups.com. > For more options, visit https://groups.google.com/groups/opt_out. > > > -- - Yasuhiro Matsumoto -- -- You received this message from the "vim_de

Re: Problems of new regexp engine (that we know)

2013-05-21 Thread Yasuhiro MATSUMOTO
oup. > To unsubscribe from this group and stop receiving emails from it, send an > email to vim_dev+unsubscr...@googlegroups.com. > For more options, visit https://groups.google.com/groups/opt_out. > > > -- - Yasuhiro Matsumoto -- -- You received this message from the "vim

Re: Problems of new regexp engine (that we know)

2013-05-22 Thread Yasuhiro MATSUMOTO
; 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 > "vim_dev" group. > To unsubscribe

Re: Problems of new regexp engine (that we know)

2013-05-23 Thread Yasuhiro MATSUMOTO
OK, I'll do it. However I doubt that there are some cases that new regexp engine is slower than original. This change make be possible to work with html file syntax, but re=2 seems to be slower than re=1. On 5/24/13, Bram Moolenaar wrote: > > Yasuhiro Matsumoto wrote: > >> C

Re: vim-nox reminder

2013-05-27 Thread Yasuhiro MATSUMOTO
w.vim.org/maillist.php > > --- > You received this message because you are subscribed to the Google Groups > "vim_dev" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to vim_dev+unsubscr...@googlegroups.com. > For more optio

Re: {func} of sort()

2013-05-31 Thread Yasuhiro MATSUMOTO
t; [{'foo': 2}, {'foo': 3}, {'foo': 4}] >> >> Below is a patch. Please check and include. >> This patch still allow to give string for function name. >> >> https://gist.github.com/mattn/5684747 >> >> Thanks. >> - Yasuhiro M

Re: {func} of sort()

2013-05-31 Thread Yasuhiro MATSUMOTO
oo': 2}, {'foo': 3}, {'foo': 4}] >> >> Below is a patch. Please check and include. >> This patch still allow to give string for function name. >> >> https://gist.github.com/mattn/5684747 >> >> Thanks. >> - Yasuhiro Matsumoto &g

Re: Error when compiling 1129

2013-06-06 Thread Yasuhiro MATSUMOTO
php > > --- > You received this message because you are subscribed to the Google Groups > "vim_dev" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to vim_dev+unsubscr...@googlegroups.com. > For more options, visit https://grou

Re: [zipPlugin] Can't open README.ja

2013-06-06 Thread Yasuhiro MATSUMOTO
ing to do > with the filetype of a .ja file. > > Dominique's suggestion is the best so far. The test could be as > simple as this: > > readfile(filename, "", 1)[0]=~"^PK" > > Regards, > Gary > > -- > -- > You received this message

Re: function dict['/foo']() fails

2013-06-25 Thread Yasuhiro MATSUMOTO
+1 -- - Yasuhiro Matsumoto -- -- 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

Re: Broken syntax in vim.vim

2013-06-26 Thread Yasuhiro MATSUMOTO
quot;vim_dev" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to vim_dev+unsubscr...@googlegroups.com. > For more options, visit https://groups.google.com/groups/opt_out. > > > -- - Yasuhiro Matsumoto -- -- You received this message

Re: Patch 7.4a.006

2013-07-09 Thread Yasuhiro MATSUMOTO
e 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 > "vim_dev"

Re: [PATCH] Asynchronous functions (settimeout, setinterval, and cancelinterval)

2013-09-05 Thread Yasuhiro MATSUMOTO
essage 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 > "vim_dev&quo

Re: Patch 7.3.519

2012-05-18 Thread Yasuhiro MATSUMOTO
help me help AIDS victims -- http://ICCF-Holland.org/// > > -- > 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 > -- - Yasuhiro Matsumoto -- 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: precedes breaks cursor position.

2012-06-06 Thread Yasuhiro MATSUMOTO
; > characters? I'm only guessing here. I don't know any wide characters >> > off-hand (and cannot identify the one in the screenshot), nor do I >> > normally use a font with glyphs for eastern scripts, nor do I even know >> > if the screenshot indeed

Re: precedes breaks cursor position.

2012-06-06 Thread Yasuhiro MATSUMOTO
; > characters? I'm only guessing here. I don't know any wide characters >> > off-hand (and cannot identify the one in the screenshot), nor do I >> > normally use a font with glyphs for eastern scripts, nor do I even know >> > if the screenshot indeed

Re: backtick should not be matched to wildignore.

2012-06-15 Thread Yasuhiro MATSUMOTO
d > + |globpath()| unless a flag is passed to disable this. > The pattern is used like with |:autocmd|, see |autocmd-patterns|. > Also see 'suffixes'. > Example: > > > -- > 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 > -- - Yasuhiro Matsumoto -- 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: Using as a leader key breaks 'Does not trigger the InsertLeave autocommand event'

2012-08-01 Thread Yasuhiro MATSUMOTO
> Now enter some text and while being in insert mode press to exit > to normal mode. > > -- > 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.

Re: Patch 7.3.769

2013-01-17 Thread Yasuhiro MATSUMOTO
vim-7.3.768/src/testdir/test69.in 2010-08-15 21:57:29.0 > +0200 > --- src/testdir/test69.in 2013-01-17 15:55:09.0 +0100 > *** > *** 1,4 > --- 1,5 > Test for multi-byte text formatting. > + Also test, that 'mps' with multibyte chars works. > > STARTTEST > :so mbyte.vim > *** > *** 134,139 > --- 135,149 > } > > STARTTEST > + /^{/+1 > + :set mps+= u2018: u2019 > + d% > + ENDTEST > + > + { > + ‘ two three ’ four > + } > + STARTTEST > :g/^STARTTEST/.,/^ENDTEST/d > :1;/^Results/,$wq! test.out > ENDTEST > *** ../vim-7.3.768/src/testdir/test69.ok 2010-08-15 21:57:29.0 > +0200 > --- src/testdir/test69.ok 2013-01-17 15:55:09.0 +0100 > *** > *** 140,142 > --- 140,146 > a > } > > + > + { > + four > + } > *** ../vim-7.3.768/src/version.c 2013-01-17 15:36:54.0 +0100 > --- src/version.c 2013-01-17 15:55:49.0 +0100 > *** > *** 727,728 > --- 727,730 > { /* Add new patch number below this line */ > + /**/ > + 769, > /**/ > > -- > Microsoft's definition of a boolean: TRUE, FALSE, MAYBE > "Embrace and extend"...? > > /// Bram Moolenaar -- b...@moolenaar.net -- http://www.Moolenaar.net \\\ > ///sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ > \\\ > \\\ an exciting new programming language -- http://www.Zimbu.org > /// > \\\help me help AIDS victims -- http://ICCF-Holland.org/// > > -- > 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 > -- - Yasuhiro Matsumoto -- 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 7.3.777

2013-01-23 Thread Yasuhiro MATSUMOTO
ng language -- http://www.Zimbu.org > /// > \\\help me help AIDS victims -- http://ICCF-Holland.org/// > > -- > You received this message from the "vim_dev" maillist. > Do not top-post! Type your reply below the text you are replying to. > For mor

Re: if_mruby: embedded mruby in vim

2013-01-31 Thread Yasuhiro MATSUMOTO
u can use 'require' > in your mruby or if_mruby. > You can find many mrbgems on github. > > https://github.com/mruby/mruby/wiki/Related-Projects > > Also you can use mgem command that is provided as ruby gems. This command > can mange mrbgens for your build_config.

Re: Update of tutor.ja.*

2013-02-05 Thread Yasuhiro MATSUMOTO
ng emails from it, send an > email to vim_dev+unsubscr...@googlegroups.com. > For more options, visit https://groups.google.com/groups/opt_out. > > > -- - Yasuhiro Matsumoto -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your re

Re: [bugreport] libcall() cannot access envrionment variable set by vim

2013-02-19 Thread Yasuhiro MATSUMOTO
-- > You received this message because you are subscribed to the Google Groups > "vim_dev" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to vim_dev+unsubscr...@googlegroups.com. > For more options, visit https://groups.google.com/g

Re: Patch 7.3.834

2013-02-28 Thread Yasuhiro MATSUMOTO
thank you On 2/28/13, Ken Takata wrote: > Hi, > > 2013/02/26 Tue 21:41:51 UTC+9 Bram Moolenaar wrote: > >> Patch 7.3.834 >> Problem:Ruby 2.0 has a few API changes. >> Solution: Add handling of Ruby 2.0. (Yasuhiro Matsumoto) >> Files: src/if_r

Re: replace character does not work correctly

2013-02-28 Thread Yasuhiro MATSUMOTO
Sorry I forgot to mention about the two or more lines is needed to reproduce. On 3/1/13, Bram Moolenaar wrote: > > Yasuhiro Matsumoto wrote: > >> When type 'ra' with linewised lines, characters will be replaced. But >> if the characters are multi-byte, s

Re: Updated c.vim / cpp.vim for C++11

2013-03-01 Thread Yasuhiro MATSUMOTO
Yes, C11 is not C++11. It's ISO/IEC 9899: 2011. On 3/2/13, Bram Moolenaar wrote: > > Yasuhiro Matsumoto wrote: > >> > This uses the variable cpp_no_cpp11. Can we document this? >> >> https://gist.github.com/5047752 > > Thanks. > >> > T

Re: ruby broken ... again

2013-03-01 Thread Yasuhiro MATSUMOTO
> You received this message because you are subscribed to the Google Groups > "vim_dev" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to vim_dev+unsubscr...@googlegroups.com. > For more options, visit https://groups.google.com/g

Re: shell quote shouldn't depend on shellslash on windows.

2009-05-26 Thread Yasuhiro MATSUMOTO
Hi, Bram I hope your working for this topic. I guess that some or many people in the world who use vim on windows are confusing. Thanks. - Yasuhiro Matsumoto On Thu, Jan 15, 2009 at 8:06 AM, Yasuhiro MATSUMOTO wrote: > Yes thats all. thanks > > On 1/15/09, Tony Mechelynck wrote: &g

Re: shell quote shouldn't depend on shellslash on windows.

2009-05-27 Thread Yasuhiro MATSUMOTO
On Thu, May 28, 2009 at 4:38 AM, Bram Moolenaar wrote: > > Yasuhiro Matsumoto wrote: > >> I hope your working for this topic. I guess that some or many people >> in the world who use vim on windows are confusing. > > It's in the todo list, but it will take a while

typo in doc

2010-03-16 Thread Yasuhiro MATSUMOTO
return "\" + endif endfunction inoremap =CleverTab() -- - Yasuhiro Matsumoto -- 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: netrw on windows+shellslash

2015-10-10 Thread Yasuhiro MATSUMOTO
No. patching vim. if okay, will make a patch. On 10/11/15, Bram Moolenaar wrote: > > Yasuhiro Matsumoto wrote: > >> I wrote a patch to enable http/ftp/webdav access with netrw on >> windows+shellslash. I'm using vim but not use cygwin or msys2. >> However, then

Re: Issue in match() function with multi-byte characters

2014-03-30 Thread Yasuhiro MATSUMOTO
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 >> "vim_dev" group. >> To unsubscribe from this group and stop receiving emails

Re: Issue in match() function with multi-byte characters

2014-03-30 Thread Yasuhiro MATSUMOTO
> This is not good. These inconsistencies need to be fixed. No, don't break compatibility. vim script should handle bytes as index. On 3/30/14, Andre Sihera wrote: > On 30/03/14 20:32, Yasuhiro MATSUMOTO wrote: >> index(sprit("こんにちわ世界", "\zs"), &qu

Re: [Suggestion] Change vim's icon to your favorited on windows

2014-09-07 Thread Yasuhiro MATSUMOTO
possible to change it if the ico file exist. It will be resized to fit for the icon. On 9/7/14, Bram Moolenaar wrote: > > Yasuhiro Matsumoto wrote: > >> I'm feeling vim's icon is little older to me. >> So I suggest vim to be possible to change it to my favorite icon. >

Re: vim.exe can't handle command arguments correctly by changing encoding.

2014-09-08 Thread Yasuhiro MATSUMOTO
cp932 is system encoding. and encoding=utf-8. This is not a direct issue about encoding convertion. mingw compiler expand wildcard always. So it is difference between 'argv from main' and 'argv from CommandLineToArgv'. On 9/9/14, Bram Moolenaar wrote: > > Yasuhiro Ma

strange syntax match in css.vim

2010-09-07 Thread Yasuhiro MATSUMOTO
match cssPseudoClass ":\w*" contains=cssPseudoClassId,cssUnicodeEscape syn keyword cssPseudoClassId contained link visited active hover focus before after left right syn match cssPseudoClassId contained "\" syn region cssPseudoClassLang matchgroup=cssPseudoClassId start="

Re: pythoncomplete does not work when "from XXX import YYY"

2011-07-22 Thread Yasuhiro MATSUMOTO
e\n' >          for sub in self.subscopes: >              str += sub.get_code() >          for l in self.locals: > -            if not l.startswith('import'): str += l+'\n' > +            if not l.startswith('import') and not l.startswith('from'): str > += l+'\n' > >          return str > > > -- > 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 > -- - Yasuhiro Matsumoto -- 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 pythoncomplete-fix.diff Description: Binary data

Re: :redir make confusion of cursor position in command line.

2011-09-30 Thread Yasuhiro MATSUMOTO
> I am unable to reproduce the problem.  What settings would be needed? > Is this in a terminal or in gvim? I can reproduce it on vim.exe. -- - Yasuhiro Matsumoto -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are

Re: [PATCH] add new vimscript function getsid()

2011-10-03 Thread Yasuhiro MATSUMOTO
w the text you are replying to. > For more information, visit http://www.vim.org/maillist.php > -- - Yasuhiro Matsumoto -- 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: line2byte() returns wrong result at multi-byte characters

2011-12-19 Thread Yasuhiro MATSUMOTO
hould >>> behave. >>> I would side with you, using byte counts of the file, not the internal >>> representation (especially because for all Unicode encodings, Vim >>> internally >>> uses UTF-8, so it wouldn't be possible to jump to UTF-16 / UTF-32 offsets >>> >>> even >>> by setting 'encoding' to it). >>> >>> :help line2byte() indirectly supports this (*emphasis* mine): >>> > This can also be used to get the byte count for the line just >>> > below the last line: > >>> > line2byte(line("$") + 1) >>> > *This is the file size plus one.* >>> >>> I think this issue needs at least a note in the documentation, and I >>> wonder >>> whether it's feasible to implement in the way you suggest. (For maximum >>> flexibility, line2byte() could take an optional flag whether file- or >>> internal-offset is wanted.) >>> >>> -- regards, ingo >>> >>> -- >>> 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 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 > -- - Yasuhiro Matsumoto -- 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: {func} of sort()

2014-10-15 Thread Yasuhiro MATSUMOTO
>> --- >> function! s:foo() >>let rank = {"queen": 12, "king": 13} >>return MapSort(["queen", "king"], 'rank[v:val]') >> endfunction >> echo s:foo() >

Re: Ctrl_L behave like Ctrl_P while pum_visible.

2015-01-05 Thread Yasuhiro MATSUMOTO
> 2. press F5 > > 3. type Ctrl-L while popup menu is visible > > Ctrl-L should not behave like Ctrl-P. ins_compl_key2dir() handles suffix > keys after CTRL-X. And also it handles keys while popup menu is visible (ex: > CTRL-P/CTRL-N). This should be cleanly separated. > >

Re: groovy syntax highlight mis-highlight for line comment

2015-04-13 Thread Yasuhiro MATSUMOTO
shebang is already supported in another part. On 4/13/15, Bram Moolenaar wrote: > > Yasuhiro Matsumoto wrote: > >> gradle/groovy doesn't allow to use # for line comment. Line comment >> just to be //. > > It does support the Shebang line, e.g.: > >

Re: Patch 7.4.695

2015-04-13 Thread Yasuhiro MATSUMOTO
; 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 > "vim_dev" group. > To unsubscribe f

Re: Patch 7.4.695

2015-04-13 Thread Yasuhiro MATSUMOTO
Yes, I mean it. On 4/14/15, Bram Moolenaar wrote: > > Yasuhiro Matsumoto wrote: > >> should be zero cleared? > > Do you mean your compiler complains about cmap_first used unititialized? > > > -- > A M00se once bit my sister ... > "Monty

Re: Problem with gvim, latexsuite and japanese input

2015-05-07 Thread Yasuhiro MATSUMOTO
sorry typo Perhaps, if we remove OnTheSpot, most of users will not bother. On 5/7/15, mattn wrote: > On Thursday, May 7, 2015 at 9:01:30 PM UTC+9, Bram Moolenaar wrote: >> Yasuhiro Matsumoto wrote: >> >> > Bram, we multi-byte users want to fix. Most of users that uses &

Re: Please enable auto cancellation on travis CI

2017-08-05 Thread Yasuhiro MATSUMOTO
" 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 > "vim_dev" group. > To unsubs

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

2017-09-01 Thread Yasuhiro MATSUMOTO
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 > "vim_dev" group. > To unsubscribe from this group and stop receiving emai

Re: [vim/vim] fix mouse pointer for get_number (#2709)

2018-03-12 Thread Yasuhiro MATSUMOTO
Cursor shape is remaining with stop icon. 2018年3月13日(火) 6:05 Bram Moolenaar : > > Yasuhiro Matsumoto wrote: > > > When input number (ex: :tselect), mouse pointer is hidden while input > > number. This is expected. But the mouse pointer is not redrawn after > > jumped t

Re: [vim/vim] balloon_show does not show utf-8 strings (#3708)

2018-12-24 Thread Yasuhiro MATSUMOTO
You are right. 2018年12月25日(火) 15:07、K.Takata さん(vim-dev-git...@256bit.org)のメッセージ: > we need to call CreateWindowEx for s_textArea instead of CreateWindow. > > Comparing with your code, maybe this explanation is a mistake of "we need > to call CreateWindowExW for s_textArea instead of CreateWindow