Re: Code coverage for the Vim source

2015-12-27 Fir de Conversatie Ben Fritz
On Sunday, December 27, 2015 at 9:45:32 PM UTC-6, yegapp...@gmail.com wrote: > Hi all, > > Just in case anyone is looking for getting the code coverage information > for Vim, I used the following steps to get this. > > 1. Modify src/Makefile and add the following two lines: > > CFLAGS=-g

Code coverage for the Vim source

2015-12-27 Fir de Conversatie Yegappan Lakshmanan
Hi all, Just in case anyone is looking for getting the code coverage information for Vim, I used the following steps to get this. 1. Modify src/Makefile and add the following two lines: CFLAGS=-g -O0 -fprofile-arcs -ftest-coverage LDFLAGS=--coverage 2. Run configure and build Vi

Re: New style tests for the cdo/ldo/cfdo/lfdo commands

2015-12-27 Fir de Conversatie Yegappan Lakshmanan
Hi, I have added another test for the "+" range. The updated diffs are attached. With this test, all the code added by patch 858 for the cdo/cfdo commands are tested. - Yegappan On Thu, Dec 24, 2015 at 6:17 PM, Yegappan Lakshmanan wrote: > Hi, > > On Thu, Dec 24, 2015 at 5:48 PM, h_east wrote:

Re: Updating runtime files without version control

2015-12-27 Fir de Conversatie Nikolay Aleksandrovich Pavlov
2015-12-28 1:24 GMT+03:00 Christian Brabandt : > Hi Ken! > > On So, 27 Dez 2015, Ken Takata wrote: > > > 2015/12/28 Mon 0:53:53 UTC+9 Christian Brabandt wrote: > > > Hi Ken! > > > > > > On So, 27 Dez 2015, Ken Takata wrote: > > > > > > > Hi Christian, > > > > > > > > Great work! > > > > But unfort

Re: Updating runtime files without version control

2015-12-27 Fir de Conversatie Christian Brabandt
Hi Bram! On So, 27 Dez 2015, Bram Moolenaar wrote: > It's included in the distribution files. I can add it to the git files, > if needed. Likewise for other binaries that are not so easy to obtain. Can't you include and distribute the source? > e.g. gvimext64.dll. What is that used for? Is t

Re: Updating runtime files without version control

2015-12-27 Fir de Conversatie Christian Brabandt
Hi Ken! On So, 27 Dez 2015, Ken Takata wrote: > 2015/12/28 Mon 0:53:53 UTC+9 Christian Brabandt wrote: > > Hi Ken! > > > > On So, 27 Dez 2015, Ken Takata wrote: > > > > > Hi Christian, > > > > > > Great work! > > > But unfortunately some features are disabled: > > > * DirectWrite > > > > What

Re: Updating runtime files without version control

2015-12-27 Fir de Conversatie Nikolay Aleksandrovich Pavlov
2015-12-27 23:20 GMT+03:00 Bram Moolenaar : > > Ken Takata wrote: > > > Great work! > > But unfortunately some features are disabled: > > * DirectWrite > > * OLE > > * Lua > > * Perl > > * Ruby > > * Tcl > > * Build *.mo files > > * vim.exe > > [...] > > > > I think, the Vim release from vim.org d

Re: [patch] It is hardly noticed script error such as E122 in new style test.

2015-12-27 Fir de Conversatie Bram Moolenaar
Hirohito Higashi wrote: > Hi Bram and List, > > How to reproduce: > - To duplicate Test_assert_false() in vim/src/testdir/test_assert.vim > $ cd vim/src > $ vim testdir/test_assert.vim > > edit like below; > " Test that the methods used for testing work. > > func Test_assert_false() > ca

Re: Updating runtime files without version control

2015-12-27 Fir de Conversatie Bram Moolenaar
Ken Takata wrote: > Great work! > But unfortunately some features are disabled: > * DirectWrite > * OLE > * Lua > * Perl > * Ruby > * Tcl > * Build *.mo files > * vim.exe [...] > > I think, the Vim release from vim.org did bundle a diff.exe, but I don't > > know how this was build, so this is

matchaddpos issue?

2015-12-27 Fir de Conversatie Davit Samvelyan
Hi, I'm trying to add C/C++ semantic highlighting to the Vim and encountered a problem(s) when using matchaddpos() function. 1. Let's say I've added some text on the line 5 to the match group, and then went into insert mode and added new line before line 5. The text moves to line 6 and that me

Re: Updating runtime files without version control

2015-12-27 Fir de Conversatie Gary Johnson
On 2015-12-27, Christian Brabandt wrote: > Is OLE really needed today? David Fishburn's OutlookVim plugin uses OLE. Regards, Gary -- -- 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: Updating runtime files without version control

2015-12-27 Fir de Conversatie Ken Takata
Hi Christian, 2015/12/28 Mon 0:53:53 UTC+9 Christian Brabandt wrote: > Hi Ken! > > On So, 27 Dez 2015, Ken Takata wrote: > > > Hi Christian, > > > > Great work! > > But unfortunately some features are disabled: > > * DirectWrite > > What feature is this? Please check v7.4.393. Currently, Dire

Re: Updating runtime files without version control

2015-12-27 Fir de Conversatie Christian Brabandt
Hi Ken! On So, 27 Dez 2015, Ken Takata wrote: > Hi Christian, > > Great work! > But unfortunately some features are disabled: > * DirectWrite What feature is this? > * OLE > * Lua > * Perl > * Ruby > * Tcl Hm, perl is available as version 5.20.1.2000 in x86. So no x64 version. Is that the co

Re: Updating runtime files without version control

2015-12-27 Fir de Conversatie Ken Takata
Hi Christian, Great work! But unfortunately some features are disabled: * DirectWrite * OLE * Lua * Perl * Ruby * Tcl * Build *.mo files * vim.exe 2015/12/27 Sun 7:42:23 UTC+9 Christian Brabandt wrote: > On Mi, 23 Dez 2015, Christian Brabandt wrote: > > > On Do, 24 Dez 2015, Nikolay Aleksandrovi

[patch] It is hardly noticed script error such as E122 in new style test.

2015-12-27 Fir de Conversatie h_east
Hi Bram and List, How to reproduce: - To duplicate Test_assert_false() in vim/src/testdir/test_assert.vim $ cd vim/src $ vim testdir/test_assert.vim edit like below; " Test that the methods used for testing work. func Test_assert_false() call assert_false(0) endfunc func Test_assert_false

[win32][patch] Update src/po/*.mak

2015-12-27 Fir de Conversatie Ken Takata
Hi, I found that the makefiles for Win32 under the src/po/ directory are old. So I have updated them. Additionally I have imported Taro Muraoka's patch from here: https://github.com/koron/vim-kaoriya-patches/blob/master/master/0101-po_install_all.diff Now Make_mvc.mak and Make_ming.mak have 'ins