Re: gVim under Linux starts too low when it is configured to take all vertical space.

2017-02-17 Fir de Conversatie Kazunobu Kuriyama
2017-02-18 9:18 GMT+09:00 Hans Deragon : > For some odd reason, when I am staring gVim on my Linux Ubuntu 16.04 LTS > laptop using the Unity desktop, it starts to low when I am asking it to > take all the vertical space available. It starts at position y=53 while it >

gVim under Linux starts too low when it is configured to take all vertical space.

2017-02-17 Fir de Conversatie Hans Deragon
For some odd reason, when I am staring gVim on my Linux Ubuntu 16.04 LTS laptop using the Unity desktop, it starts to low when I am asking it to take all the vertical space available. It starts at position y=53 while it should start at y=24, just below the windows manager's toolbar (it is 29

little typo in doc/if_pyth.txt

2017-02-17 Fir de Conversatie Holger Trapp
Hi, in the word "writen" a "t" is missing in doc/if_pyth.txt: Because most python code can be written so that it works with python 2.6+ and python 3 the pyx* functions and commands have been writen. ^ Cheers Holger -- -- You

Re: [vim/vim] Gvim spellcheck right-click change not consistently working (#1483)

2017-02-17 Fir de Conversatie Charles E Campbell
Jon Crall wrote: > > I have a latex document and in it I've spelled the word > "intermittently" incorrectly as intermittenly. > > \documentclass[10pt,twocolumn,letterpaper]{article} > \usepackage[T1]{fontenc} > > \begin{document} > > \title{A minimum working example of a

Re: [vim/vim] Gvim spellcheck right-click change not consistently working (#1483)

2017-02-17 Fir de Conversatie Ben Fritz
On Thursday, February 16, 2017 at 10:34:49 AM UTC-6, Jon Crall wrote: > I have a latex document and in it I've spelled the word "intermittently" > incorrectly as intermittenly. > > \documentclass[10pt,twocolumn,letterpaper]{article} > \usepackage[T1]{fontenc} > >

Patch 8.0.0336

2017-02-17 Fir de Conversatie Bram Moolenaar
Patch 8.0.0336 Problem:Flags of :substitute not sufficiently tested. Solution: Test up to two letter flag combinations. (James McCoy, closes #1479) Files: src/testdir/test_substitute.vim *** ../vim-8.0.0335/src/testdir/test_substitute.vim 2016-09-02

Patch 8.0.0335

2017-02-17 Fir de Conversatie Bram Moolenaar
Patch 8.0.0335 (after 8.0.0335) Problem:Functions test fails. Solution: Use the right buffer number. Files: src/testdir/test_functions.vim *** ../vim-8.0.0334/src/testdir/test_functions.vim 2017-02-17 16:31:16.929294079 +0100 --- src/testdir/test_functions.vim 2017-02-17

Patch 8.0.0334

2017-02-17 Fir de Conversatie Bram Moolenaar
Patch 8.0.0334 Problem:Can't access b:changedtick from a dict reference. Solution: Make changedtick a member of the b: dict. (inspired by neovim #6112) Files: src/structs.h, src/buffer.c, src/edit.c, src/eval.c, src/evalfunc.c, src/ex_docmd.c, src/main.c,

Patch 8.0.0333

2017-02-17 Fir de Conversatie Bram Moolenaar
Patch 8.0.0333 Problem:Illegal memory access when 'complete' ends in a backslash. Solution: Check for trailing backslash. (Dominique Pelle, closes #1478) Files: src/option.c, src/testdir/test_options.vim *** ../vim-8.0.0332/src/option.c2017-02-05 14:13:12.152033013 +0100 ---

Re: RFE: Add (U+00AD) to listchars

2017-02-17 Fir de Conversatie Matěj Cepl
On 2017-02-17, 13:31 GMT, Matěj Cepl wrote: > On 2017-02-17, 12:15 GMT, Christian Brabandt wrote: >>:call matchadd('Conceal', '\%uad', 10, -1, {'conceal': '_'}) >>:setl concealcursor=nv conceallevel=2 > > This is actually pretty good. Only it would be useful if we > could say to the spellchecker

Re: Patch 8.0.0330

2017-02-17 Fir de Conversatie Bram Moolenaar
Christian Brabandt wrote: > On Fr, 17 Feb 2017, Bram Moolenaar wrote: > > > > > Patch 8.0.0330 > > Problem:Illegal memory access after "vapo". (Dominique Pelle) > > Solution: Fix the cursor column. > > Files: src/search.c, src/testdir/test_visual.vim > > That doesn't fix the issue

Re: RFE: Add (U+00AD) to listchars

2017-02-17 Fir de Conversatie Matěj Cepl
On 2017-02-17, 12:15 GMT, Christian Brabandt wrote: >:call matchadd('Conceal', '\%uad', 10, -1, {'conceal': '_'}) >:setl concealcursor=nv conceallevel=2 This is actually pretty good. Only it would be useful if we could say to the spellchecker to ignore this character, so the word wouldn’t be

Re: Patch 8.0.0329

2017-02-17 Fir de Conversatie Bram Moolenaar
Kazunobu Kuriyama wrote: > 2017-02-15 6:51 GMT+09:00 Kazunobu Kuriyama : > > > > I'll see to them all and soon send you a patch which also addresses the > >> issue raised by Dominique. > >> > > > Hi Bram > > Here is the patch. Although this is almost the same as

Patch 8.0.0332

2017-02-17 Fir de Conversatie Bram Moolenaar
Patch 8.0.0332 Problem:GUI test fails on some systems. Solution: Try different language settings. (Kazunobu Kuriyama) Files: src/testdir/test_gui.vim *** ../vim-8.0.0331/src/testdir/test_gui.vim2017-02-12 19:59:02.937841640 +0100 --- src/testdir/test_gui.vim2017-02-17

Re: Patch 8.0.0330

2017-02-17 Fir de Conversatie Christian Brabandt
Hi Bram! On Fr, 17 Feb 2017, Bram Moolenaar wrote: > > Patch 8.0.0330 > Problem:Illegal memory access after "vapo". (Dominique Pelle) > Solution: Fix the cursor column. > Files: src/search.c, src/testdir/test_visual.vim That doesn't fix the issue mentioned before that 'o' toggles

Re: RFE: Add (U+00AD) to listchars

2017-02-17 Fir de Conversatie Christian Brabandt
Hi Matěj! On Fr, 17 Feb 2017, Matěj Cepl wrote: > Hi, > > would it be possible to do something about display of the soft > hyphen character (U+00AD)? I tried to use it in my rST file, but > ended up with a blank space. So I filed a bug against the font > I use

Re: RFE: Add (U+00AD) to listchars

2017-02-17 Fir de Conversatie Tony Mechelynck
On Fri, Feb 17, 2017 at 11:14 AM, Matěj Cepl wrote: > Hi, > > would it be possible to do something about display of the soft > hyphen character (U+00AD)? I tried to use it in my rST file, but > ended up with a blank space. So I filed a bug against the font > I use

Re: RFE: Add (U+00AD) to listchars

2017-02-17 Fir de Conversatie Dominique Pellé
Matěj Cepl wrote: > On 2017-02-17, 10:29 GMT, Dominique Pellé wrote: >> See :help 'listchars' and the section about nbsp there. >> You need a Vim version recent enough, but nbsp has >> been added a long time ago. > > I am not talking about (U+00A0), but about soft hyphen >

Patch 8.0.0331

2017-02-17 Fir de Conversatie Bram Moolenaar
Patch 8.0.0331 Problem:Restoring help snapshot accesses freed memory. (Dominique Pelle) Solution: Don't restore a snapshot when the window closes. Files: src/window.c, src/Makefile, src/testdir/Make_all.mak, src/testdir/test_help.vim *** ../vim-8.0.0330/src/window.c

Re: [bug] use memory after free in win_goto() with vim-8.0.329 and older

2017-02-17 Fir de Conversatie Bram Moolenaar
Dominique wrote: > afl-fuzz found another invalid memory bug with vim-8.0.329. > Steps to reproduce: > > $ cat >win-goto-bug.vim < h > set buftype= > h > e x > h > q > EOF > > $ valgrind vim -u NONE -S win-goto-bug.vim 2> vg.log > > And vg.log contains: > > ==15984== Memcheck, a memory error

Re: RFE: Add (U+00AD) to listchars

2017-02-17 Fir de Conversatie Matěj Cepl
On 2017-02-17, 10:29 GMT, Dominique Pellé wrote: > See :help 'listchars' and the section about nbsp there. > You need a Vim version recent enough, but nbsp has > been added a long time ago. I am not talking about (U+00A0), but about soft hyphen (U+00AD), which is not covered by listchars.

Re: [bug] invalid memory access with normal commands

2017-02-17 Fir de Conversatie Bram Moolenaar
Christian Brabandt wrote: > On Di, 14 Feb 2017, Dominique Pellé wrote: > > > Hi > > > > afl-fuzz found another command that causes access to > > invalid memory in Vim-8.0.329. It's not a recent regression > > since bug is present in at least Vim-7.4.52 that comes > > with ubuntu-14.04. > > >

Patch 8.0.0330

2017-02-17 Fir de Conversatie Bram Moolenaar
Patch 8.0.0330 Problem:Illegal memory access after "vapo". (Dominique Pelle) Solution: Fix the cursor column. Files: src/search.c, src/testdir/test_visual.vim *** ../vim-8.0.0329/src/search.c2016-12-01 17:25:16.795864620 +0100 --- src/search.c2017-02-17

Re: RFE: Add (U+00AD) to listchars

2017-02-17 Fir de Conversatie Dominique Pellé
Matěj Cepl wrote: > On 2017-02-17, 10:14 GMT, Matěj Cepl wrote: >> would it be possible to do something about display of the soft >> hyphen character (U+00AD)? I tried to use it in my rST file, >> but ended up with a blank space. So I filed a bug against the >> font I use

Re: RFE: Add (U+00AD) to listchars

2017-02-17 Fir de Conversatie Matěj Cepl
On 2017-02-17, 10:14 GMT, Matěj Cepl wrote: > would it be possible to do something about display of the soft > hyphen character (U+00AD)? I tried to use it in my rST file, > but ended up with a blank space. So I filed a bug against the > font I use

RFE: Add (U+00AD) to listchars

2017-02-17 Fir de Conversatie Matěj Cepl
Hi, would it be possible to do something about display of the soft hyphen character (U+00AD)? I tried to use it in my rST file, but ended up with a blank space. So I filed a bug against the font I use (https://github.com/tonsky/FiraCode/issues/365), but maintainer of the font (unfortunately