[patch] Win32: moving mouse won't make it appear

2013-07-17 Fir de Conversatie Ken Takata
or the tabline, mouse events are not sent to the main WndProc. So we have to hook the events using SubclassWindow(). Please check the attached patch. Actually, it is also the same for scrollbars, but it seems a little bit difficult to fix because Vim can have two or more scrollbars. Regards, Ken Takata

[patch] Win32: tabline may flicker

2013-07-17 Fir de Conversatie Ken Takata
by TabCtrl_SetCurSel(). Attached patch fixes this. Regards, Ken Takata -- -- 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

Re: [path] Win32: fix gui calculations for VS2012 builds

2013-07-18 Fir de Conversatie Ken Takata
SM_CXPADDEDBORDER 92 # endif Regards, Ken Takata -- -- 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

Re: [patch] Win32: moving mouse won't make it appear

2013-07-18 Fir de Conversatie Ken Takata
Hi Bram, 2013/07/17 Wed 21:11:12 UTC+9 Bram Moolenaar wrote: Thanks. I'll have to decide if this is safe to include in this stage of beta-testing... Any chance this will fail in some configuration? I tested with VC6, VC10 (32bit/64bit) and MinGW 4.7 on WinXP/7. All works fine. Regards, Ken

[patch] :perldo doesn't work on 32-bit Windows

2013-07-29 Fir de Conversatie Ken Takata
. +!if $(CPU) == i386 +CFLAGS = $(CFLAGS) -D_USE_32BIT_TIME_T +!endif + # Do we want to load Perl dynamically? !if $(DYNAMIC_PERL) == yes CFLAGS = $(CFLAGS) -DDYNAMIC_PERL -DDYNAMIC_PERL_DLL=\$(PERL_DLL)\ Regards, Ken Takata -- -- You received this message from the vim_dev maillist. Do not top

[patch] Japanese man pages are not shown properly

2013-07-29 Fir de Conversatie Ken Takata
or other systems. Regards, Ken Takata -- -- 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] Should we use vimLoadLib() in if_tcl.c?

2013-07-29 Fir de Conversatie Ken Takata
, 0))) +if (!(hTclLib = vimLoadLib(libname))) { if (verbose) EMSG2(_(e_loadlib), libname); Actually I haven't tested this patch yet. Regards, Ken Takata -- -- You received this message from the vim_dev maillist. Do not top-post! Type your reply below the text you

[patch] xterm-277 should be SGR?

2013-07-29 Fir de Conversatie Ken Takata
, Ken Takata -- -- 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 vim_dev group

[patch] align regexp_nfa.c

2013-07-29 Fir de Conversatie Ken Takata
Hi, Some part of regexp_nfa.c is not aligned. It was aligned before 7.3.1137. Attached patch fixes this. Regards, Ken Takata -- -- 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: [patch] Should we use vimLoadLib() in if_tcl.c?

2013-07-30 Fir de Conversatie Ken Takata
Hi, 2013/07/29 Mon 21:53:51 UTC+9 Ken Takata wrote: I think vimLoadLib() is used because of security reason, but LoadLibraryEx() is used directly in if_tcl.c. Should we use vimLoadLib() in if_tcl.c? --- a/src/if_tcl.c +++ b/src/if_tcl.c @@ -195,7 +195,7 @@ if (hTclLib

Re: [patch] :perldo doesn't work on 32-bit Windows

2013-07-30 Fir de Conversatie Ken Takata
are affected. This is also related to 7.3.623. Regards, Ken Takata -- -- 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

[patch] Win32: tabline may not be updated properly after 7.4a.034

2013-08-07 Fir de Conversatie Ken Takata
a new tab, so this patch checks whether a tab is added or not. Regards, Ken Takata -- -- 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

Re: Can't pass arguments into external command when enc=utf-8

2013-08-09 Fir de Conversatie Ken Takata
-hostname.patch. Actually I don't know that Windows can use multibyte characters in hostname. * mch_nodetype() I'm not sure this should be fixed. This doesn't seem to cause an obvious problem. * mch_system_piped() Fixed with fix-utf8-msgloop.patch. Regards, Ken Takata -- -- You received

[patch] Win32 CUI: WaitForChar() may not wait properly

2013-08-09 Fir de Conversatie Ken Takata
Hi, WaitForChar() in os_win32.c doesn't wait properly when the result of the GetTickCount() overflows. Attached patch fixes this. Regards, Ken Takata -- -- 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

Re: [patch] Win32 CUI: WaitForChar() may not wait properly

2013-08-10 Fir de Conversatie Ken Takata
(). I know that there was a famous 49.7 days bug on Win9x related to this API. So I checked this function closely and found it. Regards, Ken Takata -- -- 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 can't compile with DYNAMIC_TCL and ActiveTcl 8.6.0.0

2013-08-12 Fir de Conversatie Ken Takata
# undef Tcl_FindExecutable I don't know why Tcl_FindExecutable is undefined, but this is the cause of the linkage error. Attached patch seems to fix this problem, but I'm not sure this is the right solution because I'm not familiar with Tcl. Regards, Ken Takata -- -- You received this message from

Re: using DirectX/DirectWrite for rendering text.

2013-08-19 Fir de Conversatie Ken Takata
Hi, Using DirectWrite seems to fix the following issue from the todo.txt: 8 Win32: Multi-byte characters are not displayed, even though the same font in Notepad can display them. (Srinath Avadhanula) Try with the UTF-8-demo.txt page with Andale Mono. Regards, Ken Takata

Re: Bug: file name completion with Chinese charactors doesn't work well on windows

2013-08-19 Fir de Conversatie Ken Takata
:/中, then try to complete it with C-xC-f, completion will say: Pattern not found. However, c:/C-xC-f work. I think attached patch fixes this problem. Regards, Ken Takata -- -- You received this message from the vim_dev maillist. Do not top-post! Type your reply below the text you

[patch] fix minor mistakes in source code comments

2013-08-19 Fir de Conversatie Ken Takata
*/ return 1; Regards, Ken Takata -- -- 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

Re: Can't pass arguments into external command when enc=utf-8

2013-08-22 Fir de Conversatie Ken Takata
Hi, I found some more UTF-8 issues and I wrote additional patches to fix them. 2013/08/10 Sat 9:57:31 UTC+9 Ken Takata wrote: * fname_case() I think this should be fixed. Currently the case of a filename is not set properly. Fixed with this patch: https://bitbucket.org/k_takata/vim-win32

Re: Can't pass arguments into external command when enc=utf-8

2013-08-28 Fir de Conversatie Ken Takata
Hi, 2013/08/22 Thu 21:38:24 UTC+9 Ken Takata wrote: * mch_resolve_shortcut() in os_mswin.c Wide APIs are not used. Fixed with this patch: https://bitbucket.org/k_takata/vim-win32-mq/src/98d42e4cde77d200ededbbd14e71f60f6705ff98/fix-utf8-mch_resolve_shortcut.patch I have updated

Re: Patch 7.4.013

2013-08-30 Fir de Conversatie Ken Takata
, a surrogate pair (two code units) is counted as two characters. https://groups.google.com/d/msg/vim_dev/UsAv0LIIEug/Ux4KcVC9dWsJ So the size _MAX_PATH * 3 + 1 is enough. Regards, Ken Takata -- -- You received this message from the vim_dev maillist. Do not top-post! Type your reply below the text you

Re: Patch 7.4.016

2013-08-30 Fir de Conversatie Ken Takata
Hi Bram, 2013/08/31 Sat 0:29:32 UTC+9 Bram Moolenaar wrote: Patch 7.4.016 Problem:MS-Windows: File name completion doesn't work properly with Chinese characters. (Yue Wu) Solution: Add fname_casew(). (Ken Takata) Files:src/os_win32.c This patch (7.4.016

Re: [patch] fix minor mistakes in source code comments

2013-08-31 Fir de Conversatie Ken Takata
Hi, 2013/08/22 Thu 21:14:43 UTC+9 Bram Moolenaar wrote: Ken Takata wrote: I found some minor mistakes in comments related Japanese. Thanks. I'll include it but won't send out a patch for it. I found another typo in a comment. --- a/src/os_mac.h +++ b/src/os_mac.h @@ -263,7 +263,7

[patch][Win32] fix mouse cursor flickering

2013-09-02 Fir de Conversatie Ken Takata
a moment, then disappears again. It should remain hidden. Attached patch fixes this problem. Regards, Ken Takata -- -- 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

Re: Issue with popup menu: first item becomes unselected

2013-09-03 Fir de Conversatie Ken Takata
7.3.1269! I think 7.3.1269 should be reverted. What do you think, Christian? Regards, Ken Takata -- -- 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: :e foo:bar makes broken swap file foo:.bar.swp. and doesn't removed.

2013-09-04 Fir de Conversatie Ken Takata
. After quiting vim without saving foo:bar, the file foo remains. Regards, Ken Takata -- -- 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

[patch] Some help tags are not shown properly

2013-09-05 Fir de Conversatie Ken Takata
patch fixes this. Regards, Ken Takata -- -- 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

Re: [patch] fixed illegal memory access introduced by vim-7.4.19

2013-09-07 Fir de Conversatie Ken Takata
/version.c description: updated for version 7.4.019 Problem:MS-Windows: File name completion doesn't work properly with Chinese characters. (Yue Wu) Solution: Take care of multi-byte characters when looking for the start of the file name. (Ken Takata) Sorry, it's my

Re: Vim can't compile with DYNAMIC_TCL and ActiveTcl 8.6.0.0

2013-09-09 Fir de Conversatie Ken Takata
Hi, 2013/08/13 Tue 11:42:43 UTC+9 Ken Takata wrote: Hi tux, 2013/08/13 Tue 5:41:44 UTC+9 tux. wrote: Weirdly, Vim fails to build with ActiveTcl 8.6.0.0 on MSVC2010, saying _Tcl_FindExecutable is an unresolved symbol...? I found the following lines in the C:\Tcl86\include\tclDecls.h

[patch] Win32: Can't cd to a symlink of a directory

2013-09-20 Fir de Conversatie Ken Takata
. (I don't know about VC9.) Attached patch fixes this problem and makes vim_stat() to behave as the same as VC11's stat(). Regards, Ken Takata -- -- 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: [patch] Win32: Can't cd to a symlink of a directory

2013-09-21 Fir de Conversatie Ken Takata
Hi, 2013/09/21 Sat 7:30:14 UTC+9 Ken Takata wrote: This is caused by a bug(?) of VC10's stat(). VC's stat() behaves as follows: VC8 or earlier: stat() doesn't support symlinks at all. It retrieves status of a symlink itself. VC10: stat() supports a symlink to a normal file, but it doesn't

[patch] Undo messages may not be shown

2013-10-01 Fir de Conversatie Ken Takata
. Regards, Ken Takata -- -- 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 vim_dev group

[doc] fix :dli, :dl and :dp

2013-10-01 Fir de Conversatie Ken Takata
Hi, The note about :dl in the help of :dli seems wrong. I also think the descriptions of :dl and :dp in the index.txt are a little bit confusing. Please check the attached patch. Regards, Ken Takata -- -- You received this message from the vim_dev maillist. Do not top-post! Type your reply

Re: [patch] Undo messages may not be shown

2013-10-02 Fir de Conversatie Ken Takata
Hi, 2013/10/02 Wed 19:52:29 UTC+9 Bram Moolenaar wrote: Ken Takata wrote: Hi, Sometimes (maybe when scrolling occurs) undo messages like 2 fewer lines: before #79 7 seconds ago are not shown. (Vim 7.4.041 on Windows, 7.3.429 on Linux) E.g. 1. $ gvim -N -u NONE -U NONE 2

[patch] breakindent patch for 7.4.x

2013-10-05 Fir de Conversatie Ken Takata
specify a line number. Attached patch can be applied to 7.4.035 and 7.4.050. Regards, Ken Takata -- -- 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: Vim can't compile with DYNAMIC_TCL and ActiveTcl 8.6.0.0

2013-10-06 Fir de Conversatie Ken Takata
Hi Bram, 2013/09/09 Mon 21:14:44 UTC+9 Ken Takata wrote: Hi, 2013/08/13 Tue 11:42:43 UTC+9 Ken Takata wrote: Hi tux, 2013/08/13 Tue 5:41:44 UTC+9 tux. wrote: Weirdly, Vim fails to build with ActiveTcl 8.6.0.0 on MSVC2010, saying _Tcl_FindExecutable is an unresolved symbol

Re: [patch] breakindent patch for 7.4.x

2013-10-06 Fir de Conversatie Ken Takata
the previous patch is: $ diff vim-7.4.035-breakindent.patch vim-7.4.035-breakindent-macvim.patch 775c775 @@ -8501,6 +8533,16 @@ --- @@ -8501,5 +8533,15 @@ 791d790 else if (pp == curbuf-b_p_tw) Regards, Ken Takata -- -- You received this message from the vim_dev maillist. Do not top-post

[patch] exclude East Asian characters form spell checking

2013-10-07 Fir de Conversatie Ken Takata
Vim's spell checking algorithm doesn't support Chinese, Japanese or other East Asian languages. So I just exclude these characters from spell checking. (No options) Please check the attached patch. Regards, Ken Takata -- -- You received this message from the vim_dev maillist. Do not top-post

Re: [patch] exclude East Asian characters form spell checking

2013-10-08 Fir de Conversatie Ken Takata
Hi, 2013/10/08 Tue 6:21:22 UTC+9 Bram Moolenaar wrote: Tony Mechelynck wrote: On 07/10/13 14:02, Ken Takata wrote: Hi, I wrote a patch for the following items from todo.txt: Have an option for spell checking to not mark any Chinese, Japanese or other double-width

Re: [patch] exclude East Asian characters form spell checking

2013-10-08 Fir de Conversatie Ken Takata
be clearer, but it's a bit long. I don't think there will ever be a cjk language, thus there should be no reason to avoid that in case we do get a cjk spell checker. Ah, I understand. I have updated the patch. Regards, Ken Takata -- -- You received this message from the vim_dev maillist. Do

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

2013-10-10 Fir de Conversatie Ken Takata
nropt_T and define it to the right type. Regards, Ken Takata -- -- 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

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

2013-10-12 Fir de Conversatie Ken Takata
Hi, 2013/10/11 Fri 10:13:34 UTC+9 Ken Takata wrote: Your patch still have some coding style errors and I fixed them. Please check the attached patch. Additionally, there are still some issues I think: 1. Copyright information is missing in the timers.c. 2. MCH_MONOTONIC_TIME is defined

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

2013-10-21 Fir de Conversatie Ken Takata
which exceeds 80 columns.) * Fix examples of setinterval() in the eval.txt. * Fix an indent. I think remaining items are: * How to stop a timer which has a problem. * Support for old compilers like MSVC6. (Is it needed?) Regards, Ken Takata -- -- You received this message from the vim_dev

Re: Patch 7.4.079

2013-11-08 Fir de Conversatie Ken Takata
Hi Bram, 2013/11/08 Fri 12:30:38 UTC+9 Bram Moolenaar wrote: diff: ../vim-7.4.078/src/runtime/doc/eval.txt: No such file or directory diff: src/runtime/doc/eval.txt: No such file or directory It seems that a patch for eval.txt is missing. Regards, Ken Takata -- -- You received this message

Re: Patch 7.4.078

2013-11-08 Fir de Conversatie Ken Takata
) == 12.0)) or just remove the version checking: !if $(ANALYZE) == yes Regards, Ken Takata -- -- 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 7.4.088

2013-11-13 Fir de Conversatie Ken Takata
, line 4237: error 1531: Invalid member of struct or union. cc: spell.c, line 4249: error 1531: Invalid member of struct or union. *** Error exit code 1 I haven't had time to make a patch sorry. Cheers John Sorry for this. It's my mistake. Please try this patch. Regards, Ken Takata

Re: Patch 7.4.085

2013-11-18 Fir de Conversatie Ken Takata
bypasses a wrong block. Expected result is: 123ab 4567ab (See: :help v_b_A) I hope attached patch fixes this. Regards, Ken Takata -- -- 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

[patch] Support DD reordering in the GUI tab pages line

2013-11-22 Fir de Conversatie Ken Takata
(Linux GTK). Please check. Regards, Ken Takata -- -- 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

Re: [patch] Support DD reordering in the GUI tab pages line

2013-11-22 Fir de Conversatie Ken Takata
Hi, 2013/11/23 Sat 9:13:06 UTC+9 Ken Takata wrote: Currently the CUI tab pages line supports drag-and-drop reordering but the GUI tab pages line doesn't. Attached patch enables DD reordering in the GUI tab pages line on Windows and Linux GTK. (Tested on Windows XP/7 and Ubuntu 12.04

[patch][Win32] temporary files generated by zG are not deleted

2013-11-22 Fir de Conversatie Ken Takata
spell_delete_wordlist().) Regards, Ken Takata -- -- 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

Re: [PATCH] Subpixel rendering artifacts in GUI mode

2013-11-24 Fir de Conversatie Ken Takata
spaces in front of a D ('guifont' set to lucida_console:h8). Maybe it is needed also for Windows. Regards, Ken Takata -- -- 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

Re: [patch] Option to show indent level with 'expandtab' and 'list' option

2013-11-27 Fir de Conversatie Ken Takata
should not be used. Regards, Ken Takata -- -- 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

Re: ActivePerl 5.18.1 fails to compile

2013-12-02 Fir de Conversatie Ken Takata
patch for C:\Perl\lib\CORE\sys\socket.h. 3. If you use MSVC: * Apply support-perl5.18.patch. * Apply my previous patch for C:\Perl\lib\CORE\config.h. Additionally, I wrote a patch to fix indents: fix-indent-in-if_perl.patch Regards, Ken Takata -- -- You received this message from

Re: ActivePerl 5.18.1 fails to compile

2013-12-05 Fir de Conversatie Ken Takata
/vim_dev/YWnfI9wFFoA/rZdp5k1hdeAJ , if you use MSVC and ActivePerl 5.18 (and you don't want to build Perl form the source code). This should work for all combinations of MSVC or MinGW (w64 or non-w64), Perl 5.16 or 5.18, 32 or 64 bits, dynamic or static link. Regards, Ken Takata -- -- You

Re: ActivePerl 5.18.1 fails to compile

2013-12-06 Fir de Conversatie Ken Takata
reduce the maintenance cost. This is a trial patch (Maybe more refinement is needed): https://bitbucket.org/k_takata/vim-ktakata-mq/src/tip/merge-Make_cyg-into-Make_ming.patch Regards, Ken Takata -- -- You received this message from the vim_dev maillist. Do not top-post! Type your reply below

[patch] wrong syntax highlight with netrw

2013-12-06 Fir de Conversatie Ken Takata
garbage characters '8192\' on top of each filename as already reported by mattn.) Attached patch fixes this problem. (Patch for v150k) Regards, Ken Takata -- -- 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

Re: [patch,log] Static analysis result with MSVC10

2013-12-07 Fir de Conversatie Ken Takata
Hi, 2013/12/7 Sat 18:49:37 UTC+9 Ken Takata wrote: Hi, After 7.4.081 static analysis with MSVC10 (Windows SDK 7.1) is supported. I compiled 7.4.110 with MSVC10 enabling the static analysis. I attach the result of the analysis. Maybe the most of the warnings are false positive, but I

Re: Blocked Mail

2013-12-07 Fir de Conversatie Ken Takata
that it caused by my e-mail address which is a provided by a free mail transfer service. Next time I will stop to send from this address, and send from my gmail account (ktakata65...@gmail.com). Regards, Ken Takata -- -- You received this message from the vim_dev maillist. Do not top-post! Type your

Re: Can't pass arguments into external command when enc=utf-8

2013-12-11 Fir de Conversatie Ken Takata
that mattn's patch is more important than mine: https://groups.google.com/d/msg/vim_dev/UsAv0LIIEug/GoD3DLbTDusJ . Regards, Ken Takata -- -- 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: Patch 7.4.117

2013-12-11 Fir de Conversatie Ken Takata
. (Cesar Romani) Move including inline.h further down. (Ken Takata) Files: src/Make_cyg.mak, src/Make_ming.mak, src/if_perl.xs [...] Sadly, this no longer compiles on Linux: (snip) Perl version: This is perl 5, version 18, subversion 1 (v5.18.1) built for i486

Re: Patch 7.4.122

2013-12-12 Fir de Conversatie Ken Takata
) : warning C4090: 'function' : different 'const' qualifiers Attached patch fixes them. Regards, Ken Takata -- -- 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.4.122

2013-12-12 Fir de Conversatie Ken Takata
2013/12/13 Fri 4:26:01 UTC+9 Bram Moolenaar wrote: STARTUPINFO and LPSTARTUPINFOW are actually different. I hope this doesn't matter. The differences of these structures are only three members: lpReserved, lpDesktop and lpTitle, and we don't use them. So, it doesn't matter. Regards, Ken

Re: Patch 7.4.120

2013-12-13 Fir de Conversatie Ken Takata
was not merged into 7.4.117. Is it intentional or just a mistake? Regards, Ken Takata -- -- 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

Re: Borland Make_bc5.mak

2013-12-14 Fir de Conversatie Ken Takata
but _DEBUG is not defined. TRACE macros defined in os_win32.h cannot be used because of this. Attached patch fixes them. Regards, Ken Takata -- -- 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

[patch] when an italic font is used, overhangs are not shown

2013-12-16 Fir de Conversatie Ken Takata
Hi, When an italic font is used, overhangs are not shown properly. Here is a screen shot on Windows with `:set gfn=lucida_console:h12:i`. The upper right corner of each character is not shown. It also occurs on Linux, and maybe other systems. Attached patch fixes this. Regards, Ken Takata

Re: [patch] when an italic font is used, overhangs are not shown

2013-12-16 Fir de Conversatie Ken Takata
Hi, 2013/12/17 Tue 0:01:03 UTC+9 Ken Takata wrote: When an italic font is used, overhangs are not shown properly. Here is a screen shot on Windows with `:set gfn=lucida_console:h12:i`. The upper right corner of each character is not shown. It also occurs on Linux, and maybe other systems

[patch] non-ASCII font names don't work on Windows

2013-12-22 Fir de Conversatie Ken Takata
not be used even if this patch is applied. Currently, this is a limitation. (Maybe hundreds of lines should be changed when using wide functions.) Regards, Ken Takata -- -- You received this message from the vim_dev maillist. Do not top-post! Type your reply below the text you are replying

Re: [patch] non-ASCII font names don't work on Windows

2014-01-06 Fir de Conversatie Ken Takata
Hi, 2014/1/1 Wed 1:36:51 UTC+9 Bram Moolenaar wrote: Ken Takata wrote: Hi, I wrote a patch to fix an issue from the todo.txt: 8 non-ASCII font names don't work. Need to convert from 'encoding' and use the wide functions. How to reproduce: gvim -u NONE -U

[patch] a file on a UNC path becomes readonly.

2014-01-08 Fir de Conversatie Ken Takata
a UNC path. Attached patch fixes this. Regards, Ken Takata -- -- 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

[Win32] executable() may return a wrong result

2014-01-10 Fir de Conversatie Ken Takata
for SearchPath()? (Yasuhiro Matsumoto, 2009 Jan 30) Regards, Ken Takata -- -- 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: [Win32] executable() may return a wrong result

2014-01-10 Fir de Conversatie Ken Takata
Hi, 2014/1/11 Sat 0:24:26 UTC+9 Ken Takata wrote: This issue can be fixed by mattn's following patch: https://groups.google.com/d/topic/vim_dev/eEBXYLz0NHI/discussion The patch is already listed in the todo.txt: Win32: use different args for SearchPath()? (Yasuhiro Matsumoto, 2009 Jan

Re: Patch 7.4.044

2014-01-12 Fir de Conversatie Ken Takata
) + # define OPEN_OH_ARGTYPE intptr_t + #else + # define OPEN_OH_ARGTYPE long + #endif MinGW also supports intptr_t, so condition for MinGW is needed. Regards, Ken Takata -- -- You received this message from the vim_dev maillist. Do not top-post! Type your reply below the text you are replying

[patch][Win32] wrong file may be opened when enc=utf-8

2014-01-18 Fir de Conversatie Ken Takata
API. However, if a Wide C runtime function fails, we should check g_PlatformId instead of GetLastError(). Attached fix-utf8-wrong-fallback.patch fixes this issue. I also find the similar parts which should be fixed. See fix-utf8-wrong-fallback-addition.patch. Regards, Ken Takata -- -- You

[patch] Netrw error when the clipboard feature is disabled

2014-01-27 Fir de Conversatie Ken Takata
patch seems to fix this. Regards, Ken Takata -- -- 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

Re: [patch] Netrw error when the clipboard feature is disabled

2014-01-29 Fir de Conversatie Ken Takata
results in my spamming the list if I don't notice in time that the email was sent to all rather than to me. Okay, I'll do so next time. Regards, Ken Takata -- -- 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

[doc] minor fix in motion.txt

2014-02-11 Fir de Conversatie Ken Takata
characters are counted depending on the current Regards, Ken Takata -- -- 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: [patch] Pressing the 'pastetoggle' key doesn't update the statusline

2014-02-11 Fir de Conversatie Ken Takata
the statusline. (Jan Christoph Ebersbach, 2008 Feb 1) Regards, Ken Takata -- -- 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

[patch] minor fix for help.vim

2014-02-12 Fir de Conversatie Ken Takata
, Ken Takata -- -- 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 vim_dev group

[patch] sometimes 'make clean' executes ./configure unexpectedly

2014-03-25 Fir de Conversatie Ken Takata
://groups.google.com/d/topic/vim_dev/L7-eXk0Slds/discussion (already merged with 7.3.1221) Best regards, Ken Takata -- -- 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: [DOC BUG] :caddexpr/:laddexpr have incorrect abbreviations

2014-03-26 Fir de Conversatie Ken Takata
lines to the current quickfix list. If a quickfix list is not present, then a new list is created. The current cursor position will not be changed. See |:cexpr| for Best regards, Ken Takata -- -- You received this message from

Re: Patch 7.4.225

2014-03-28 Fir de Conversatie Ken Takata
`window_set_height': if_ruby.c:(.text+0x108d): undefined reference to `rb_num2int_stub' if_ruby.c:(.text+0x10b9): undefined reference to `rb_fix2int_stub' Attached patch seems to fix this. Tested with: * Ubuntu 12.04 x86_64, ruby 1.8.7 (+ruby/dyn) * Ubuntu 12.04 x86_64, ruby 1.9.3 (+ruby/dyn) Regards, Ken

Re: Patch 7.4.153

2014-03-29 Fir de Conversatie Ken Takata
, Py_ssize_t length, ... They occur when Vim is statically linked with Python 3.2 or later. The type of the first argument of PySlice_GetIndicesEx was changed in Python 3.2 from PySliceObject to PyObject. He and I made a patch for this: https://gist.github.com/nakinor/9780409 Regards, Ken Takata

Re: Patch 7.4.153

2014-03-30 Fir de Conversatie Ken Takata
Hi, 2014/3/30 Sun 23:12:39 UTC+9 Bram Moolenaar: This doesn't work, because PySliceObject_T is used in if_python3.c before including if_py_both.h. I'll move the #if to if_python3.c to make it work. Oops, sorry for that. Regards, Ken Takata -- -- You received this message from the vim_dev

Re: Bug? Vim listchars error (E474) with unicode chars

2014-04-02 Fir de Conversatie Ken Takata
of 'encoding'. (see :help :scriptencoding) 'encoding' must be set properly before :scriptencoding. Regards, Ken Takata -- -- 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

Re: [Win32] executable() may return a wrong result

2014-04-03 Fir de Conversatie Ken Takata
Hi, 2014/1/11 Sat 12:39:07 UTC+9 Ken Takata wrote: Hi, 2014/1/11 Sat 0:24:26 UTC+9 Ken Takata wrote: This issue can be fixed by mattn's following patch: https://groups.google.com/d/topic/vim_dev/eEBXYLz0NHI/discussion The patch is already listed in the todo.txt: Win32: use

Re: Bug? Vim listchars error (E474) with unicode chars

2014-04-04 Fir de Conversatie Ken Takata
step? You must set two characters for tab. See :help lcs-tab. Please try this: :let listchars=tab:| ,eol:\u00b6 or: :set listchars=tab:\|\ ,eol:¶ Regards, Ken Takata -- -- You received this message from the vim_dev maillist. Do not top-post! Type your reply below the text you are replying

Re: Patch 7.4.217

2014-04-10 Fir de Conversatie Ken Takata
$MAKECMDGOALS. (Ken Takata) Files:src/Makefile Now I think that it's better to skip running configure also for make autoconf and make reconfig. Regards, Ken Takata -- -- You received this message from the vim_dev maillist. Do not top-post! Type your reply below the text you are replying

Re: Patch 7.4.217

2014-04-10 Fir de Conversatie Ken Takata
Hi Bram and Ben, 2014/4/11 Fri 3:01:14 UTC+9 Bram Moolenaar wrote: Ken Takata wrote: 2014/3/25 Tue 23:35:23 UTC+9 Bram Moolenaar wrote: Patch 7.4.217 Problem:When src/auto/configure was updated, make clean would run configure pointlessly. Solution: Do not run

Re: Enabling Python on Windows

2014-04-16 Fir de Conversatie Ken Takata
PYTHON=C:\Python27 DYNAMIC_PYTHON=yes PYTHON_VER=27 PERL=C:\Perl DYNAMIC_PERL=yes PERL_VER=510 XPM=xpm\x86 clean Do you use 32-bit version of python? If you use 32-bit Vim, you should use 32-bit python. 64-bit python won't work. Regards, Ken Takata -- -- You received this message from

[patch] possible bug in gui_mch_init() in gui_gtk_x11.c

2014-04-17 Fir de Conversatie Ken Takata
*) C) + if (strcmp(setlocale(LC_NUMERIC, NULL), C) != 0) setlocale(LC_NUMERIC, C); # endif } Regards, Ken Takata -- -- 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: Suggestion: follow link to .viminfo when vim quit

2014-05-03 Fir de Conversatie Ken Takata
security issues. Regards, Ken Takata -- -- 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

Re: [patch] updated breakindent patch

2014-05-07 Fir de Conversatie Ken Takata
/vim_dev/SML3mtGd50s/VDvFN11MwcEJ (And minor updated version is available at here: https://bitbucket.org/k_takata/vim-ktakata-mq/src/f8c3f9f5de704bc74a9d61fc633ecd2266b10d0a/vim-7.4.178-breakindent.patch) Could you merge it? Regards, Ken Takata -- -- You received this message from the vim_dev

[patch] issues with configure

2014-05-16 Fir de Conversatie Ken Takata
an empty string. Thus if_python doesn't work. (has('python') returns 0.) The name of python DLL is retieved inside AC_CACHE_VAL(), but the name isn't cached. The DLL name should be cached. Attached patches fix them. Regards, Ken Takata -- -- You received this message from the vim_dev

Re: [patch] issues with configure

2014-05-18 Fir de Conversatie Ken Takata
Hi Bram, 2014/5/18 Sun 0:24:51 UTC+9 Bram Moolenaar wrote: Ken Takata wrote: I found two issues with configure. 1. After 7.3.1221, 'make config' removes auto/config.cache everytime. Thus the cached result of configure was not used at all. I think that's intentional. Using

Re: Linking against the multithreaded DLL runtime

2014-05-20 Fir de Conversatie Ken Takata
. Regards, Ken Takata -- -- 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 vim_dev

Re: resolve don't work under windows

2014-05-24 Fir de Conversatie Ken Takata
Hi, 2014/5/22 Thu 23:57:52 UTC+9 z...@softvisio.net wrote: Is there is any way to resolve symlink under windows, resolve function, seems, not work. Currently resolve() resolves only shortcuts (.lnk) under Windows, symlinks are not supported. Regards, Ken Takata -- -- You received

Re: Can't build with strawberry perl 5.20 + mingw-w64-4.9.0

2014-06-03 Fir de Conversatie Ken Takata
With perl 5.18.2 build process completed normally. Command used: mingw32-make.exe -f Make_ming.mak ARCH=x86-64 FEATURES=HUGE OLE=yes POSTSCRIPT=yes PERL=d:/devel/perl PERL_VER=520 DYNAMIC_PERL=yes gvim.exe xxd/xxd.exe vimrun.exe Please try attached patch. Regards, Ken Takata -- -- You

[doc][patch] minor mistake after 7.4.237

2014-06-23 Fir de Conversatie Ken Takata
types of features: +There are four types of features: 1. Features that are only supported when they have been enabled when Vim was compiled |+feature-list|. Example: :if has(cindent) Regards, Ken Takata -- -- You received this message from the vim_dev maillist. Do not top-post

Re: Patch 7.3.798

2013-02-01 Fir de Conversatie Ken Takata
Hi toothpik, 2013/02/02 Sat 4:27:54 UTC+9 toothpik: that was  my point:  version.c didn't get updated by my 'hg pull' so version still shows 797 Did you do 'hg update' after 'hg pull'? Thanks, Ken Takata -- -- You received this message from the vim_dev maillist. Do not top-post! Type

  1   2   3   4   5   6   7   8   9   10   >