Re: Patch to add functions for manipulating the tag stack of a window

2018-11-04 Fir de Conversatie Dominique Pellé
Yegappan Lakshmanan wrote: > Hi all, > > The attached patch adds two new functions (gettagstack() and > settagstack()) for getting and modifying the tag stack of a > window. The documentation update and a test are also part > of this patch. > > - Yegappan Hi Yegappan Minor correction in your

Patch to add functions for manipulating the tag stack of a window

2018-11-04 Fir de Conversatie Yegappan Lakshmanan
Hi all, The attached patch adds two new functions (gettagstack() and settagstack()) for getting and modifying the tag stack of a window. The documentation update and a test are also part of this patch. - Yegappan -- -- You received this message from the "vim_dev" maillist. Do not top-post!

Patch 8.1.0511

2018-11-04 Fir de Conversatie Bram Moolenaar
Patch 8.1.0511 Problem:ml_get error when calling a function with a range. Solution: Don't position the cursor after the last line. Files: src/userfunc.c, src/testdir/test_functions.vim *** ../vim-8.1.0510/src/userfunc.c 2018-10-25 13:31:33.833906872 +0200 --- src/userfunc.c

Infinite recursion while running test49.vim

2018-11-04 Fir de Conversatie James McCoy
I've been running into various, non-deterministic issues (segfaults and vim just "disappearing") trying to update the Debian package. I think the latter is due to the infinite recursion in the attached backtrace. In this particular case, I was running the tests with ASAN enabled (trying to get

Re: updated German translations

2018-11-04 Fir de Conversatie Bram Moolenaar
Christian wrote: > On So, 04 Nov 2018, Dominique Pellé wrote: > > > Christian Brabandt wrote: > > > > > Bram, > > > attached is an update to the German translation as patch and complete > > > file. Please include with the next runtime file update. > > > > > > Best, > > > Christian > > > >

Re: Patch 8.1.0510

2018-11-04 Fir de Conversatie Bram Moolenaar
James McCoy wrote: > On Sun, Nov 04, 2018 at 08:09:10PM +0100, Christian Brabandt wrote: > > > > On So, 04 Nov 2018, Bram Moolenaar wrote: > > > > > + else if (STRLEN(p_hlg) >= 1 && *p_hlg == 'C') > > > > James mentioned[¹], that this might be overly eager. > > This isn't doing

Re: Patch 8.1.0510

2018-11-04 Fir de Conversatie Tony Mechelynck
>if (lang == NULL || STRLEN(lang) < 2)/* safety check */ >return; ... >// any C like setting, such as C.UTF-8, becomes "en" >else if (STRLEN(p_hlg) >= 1 && *p_hlg == 'C') >{ >p_hlg[0] = 'e'; >p_hlg[1] = 'n'; >} This sets

Re: Patch 8.1.0510

2018-11-04 Fir de Conversatie Christian Brabandt
On So, 04 Nov 2018, James McCoy wrote: > On Sun, Nov 04, 2018 at 08:09:10PM +0100, Christian Brabandt wrote: > > On So, 04 Nov 2018, Bram Moolenaar wrote: > > > > > + else if (STRLEN(p_hlg) >= 1 && *p_hlg == 'C') > > > > James mentioned[¹], that this might be overly eager. > >

Re: Patch 8.1.0510

2018-11-04 Fir de Conversatie James McCoy
On Sun, Nov 04, 2018 at 08:09:10PM +0100, Christian Brabandt wrote: > > On So, 04 Nov 2018, Bram Moolenaar wrote: > > > + else if (STRLEN(p_hlg) >= 1 && *p_hlg == 'C') > > James mentioned[¹], that this might be overly eager. This isn't doing a case-insensitive comparison, so it _should_

Re: Patch 8.1.0510

2018-11-04 Fir de Conversatie Christian Brabandt
On So, 04 Nov 2018, Bram Moolenaar wrote: > + else if (STRLEN(p_hlg) >= 1 && *p_hlg == 'C') James mentioned[¹], that this might be overly eager. So perhaps this would be better: diff --git a/src/option.c b/src/option.c index efe43aa2b..39bb52f88 100644 --- a/src/option.c +++

Re: updated German translations

2018-11-04 Fir de Conversatie Christian Brabandt
On So, 04 Nov 2018, Dominique Pellé wrote: > Christian Brabandt wrote: > > > Bram, > > attached is an update to the German translation as patch and complete > > file. Please include with the next runtime file update. > > > > Best, > > Christian > > Hi Christian. > > Those 2 German

Re: Anyone interested in some digraph improvements?

2018-11-04 Fir de Conversatie Eric Pruitt
On Thu, Sep 20, 2018 at 12:02:43AM -0700, lynnechandler1...@gmail.com wrote: > Is there any interest in the capability to enable/disable the default > digraphs on the fly, and also to allow deletion of user-made digraphs? > I've already implemented the former [...] Could you please share the

Re: [vim/vim] ConPTY support (#3474)

2018-11-04 Fir de Conversatie Blay263
So is ConPTY support dead? Any plans on continuing the PR -- -- 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

Re: updated German translations

2018-11-04 Fir de Conversatie Dominique Pellé
Christian Brabandt wrote: > Bram, > attached is an update to the German translation as patch and complete > file. Please include with the next runtime file update. > > Best, > Christian Hi Christian. Those 2 German translations in src/de.po have mistakes: msgid "Recovery completed. You should

Patch 8.1.0510

2018-11-04 Fir de Conversatie Bram Moolenaar
Patch 8.1.0510 Problem:Filter test fails when $LANG is C.UTF-8. Solution: Set 'helplang' to "en" for any C language. (Christian Brabandt, closes #3577) Files: src/option.c *** ../vim-8.1.0509/src/option.c2018-10-25 13:31:33.829906902 +0200 --- src/option.c

Re: MATLAB indent script

2018-11-04 Fir de Conversatie Bram Moolenaar
Axel Forsman wrote: > > Let me check if I have another email for Christopher... I'll ask him to > > respond. > > Hey Bram, have you heard back from Christopher? He responded on the thread, didn't you see his message? -- Overflow on /dev/null, please empty the bit bucket. /// Bram

Re: MATLAB indent script

2018-11-04 Fir de Conversatie Axel Forsman
> Let me check if I have another email for Christopher... I'll ask him to > respond. Hey Bram, have you heard back from Christopher? -- -- 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