Re: Corrections in Esperanto translation

2018-05-07 Fir de Conversatie Christian Brabandt
On Mo, 07 Mai 2018, Dominique Pellé wrote: > Attached are corrections to the Esperanto > translation src/po/eo.po. Kudos to Tony > Mechelynck for most of the corrections. I don't talk esperanto, but one thing I noticed: > # Esperanto Translation for Vim > # > # Do ":help uganda" in Vim to read

Re: Fatal Python error: Py_Initialize:

2018-05-07 Fir de Conversatie Vlad Vladov
It is unable to locate a python library called encodings which might be specific to the addon and you might have to double check that you have recieved full code for the addon and followed the instructions. The only other thing I can think of is if you are using wrong python version. Are you runnin

Fwd: Vim license compatibility when porting to another language

2018-05-07 Fir de Conversatie tyru
Oh, I forgot to add vim_dev to CC... -- Forwarded message - From: tyru Date: 2018年5月7日(月) 2:43 Subject: Re: Vim license compatibility when porting to another language To: Bram Moolenaar Thanks for response! 2018-05-07 2:29 GMT+09:00 Bram Moolenaar : > > Tyru wrote: > >> I am n

Fatal Python error: Py_Initialize:

2018-05-07 Fir de Conversatie srlhyo
Please find attached png file. I am unable to run the plugin "browserlink.vim" (https://github.com/jaxbot/browserlink.vim). It shows the following error: Fatal Python error: Py_Initialize: unable to load the file system codec ImportError: No module named 'encodings' I have searched for fixi

Re: [vim/vim] Slow escape from edit mode in WSL (#2872)

2018-05-07 Fir de Conversatie Vlad Vladov
which vim package are you using? Can it be the case that only one of the versions is slow (If I remember correctly there were a few vim packages and also I do not have this issue with wsl)? On Mon, May 7, 2018 at 11:11 AM, stephane wrote: > yes @chrisbra I removed m

Re: [vim/vim] add environ() (#2875)

2018-05-07 Fir de Conversatie Nikolay Aleksandrovich Pavlov
2018-05-07 23:32 GMT+03:00 Ni Va : > Le lundi 7 mai 2018 22:17:06 UTC+2, Ni Va a écrit : >> Le lundi 7 mai 2018 21:55:57 UTC+2, Bram Moolenaar a écrit : >> > Ken Takata wrote: >> > >> > >> > >> > > This might be used for a workaround for the following todo item: >> > >> > > >> > >> > > > Can't reco

Re: [vim/vim] add environ() (#2875)

2018-05-07 Fir de Conversatie Ni Va
Le lundi 7 mai 2018 22:17:06 UTC+2, Ni Va a écrit : > Le lundi 7 mai 2018 21:55:57 UTC+2, Bram Moolenaar a écrit : > > Ken Takata wrote: > > > > > > > > > This might be used for a workaround for the following todo item: > > > > > > > > > > > Can't recognize the $ProgramFiles(x86) environment

Re: [vim/vim] add environ() (#2875)

2018-05-07 Fir de Conversatie Ni Va
Le lundi 7 mai 2018 22:17:06 UTC+2, Ni Va a écrit : > Le lundi 7 mai 2018 21:55:57 UTC+2, Bram Moolenaar a écrit : > > Ken Takata wrote: > > > > > > > > > This might be used for a workaround for the following todo item: > > > > > > > > > > > Can't recognize the $ProgramFiles(x86) environment

Re: [vim/vim] add environ() (#2875)

2018-05-07 Fir de Conversatie Ni Va
Le lundi 7 mai 2018 21:55:57 UTC+2, Bram Moolenaar a écrit : > Ken Takata wrote: > > > > > This might be used for a workaround for the following todo item: > > > > > > > Can't recognize the $ProgramFiles(x86) environment variable. Recognize it > > > > specifically? First try with the paren

Patch 8.0.1803

2018-05-07 Fir de Conversatie Bram Moolenaar
Patch 8.0.1803 Problem:Warning for uninitialized variable. (Tony Mechelynck) Solution: Initialize it. Files: src/terminal.c *** ../vim-8.0.1802/src/terminal.c 2018-05-06 22:01:38.777570516 +0200 --- src/terminal.c 2018-05-07 20:08:36.408504146 +0200 *** *** 4758,

Re: gcc warning -Wmaybe-uninitialized at terminal.c:4785:36 (in Huge but not in Tiny) after applying patches 1800 to 1802

2018-05-07 Fir de Conversatie Bram Moolenaar
Tony wrote: > gcc -std=gnu99 -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -pthread > -I/usr/include/gtk-2.0 -I/usr/lib64/gtk-2.0/include > -I/usr/include/pango-1.0 -I/usr/include/atk-1.0 -I/usr/include/cairo > -I/usr/include/pixman-1 -I/usr/include/libdrm -I/usr/include/libpng16 > -I/usr/includ

Re: [vim/vim] Refactor the qf_parse_line() function in quickfix.c (#2881)

2018-05-07 Fir de Conversatie Yegappan Lakshmanan
Hi, On Mon, May 7, 2018 at 12:12 AM, Dominique Pellé wrote: > @dpelle commented on this pull request. > > > > In src/quickfix.c: > >> + if (regmatch->startp[i] == NULL) > +return QF_FAIL; > + fields->col = (int)atol((char *)regmatch->startp[i]); > +} > +

Re: [vim/vim] Issue in test function with feedkeys(), autocommands and pumvisible() in a mapping (#2876)

2018-05-07 Fir de Conversatie Christian Brabandt
On Sa, 05 Mai 2018, Lifepillar wrote: > I have posted this on the Vim mailing list, but I am opening an issue here > because I think that this is a bug, or at least a shortcoming, of > `feedkeys()` (but I may be missing something about some internal character > processing in Vim). > > The fol