Re: [patch] use strikethrough for diff filetype

2017-10-10 Fir de Conversatie Ben Fritz
On Saturday, October 7, 2017 at 2:30:32 AM UTC-5, Christian Brabandt wrote: > On Fr, 06 Okt 2017, Ben Fritz wrote: > > > https://bitbucket.org/fritzophrenic/vim-tohtml/issues/14/add-support-for-strikethrough > > > > I am starting to get a backlog...I will try to get out a new version > > with thi

Re: Terminal is very slow in the gui

2017-10-10 Fir de Conversatie Ramel Eshed
On Wednesday, October 11, 2017 at 1:04:50 AM UTC+3, Ken Takata wrote: > Hi Ramel, > > 2017/10/11 Wed 6:08:33 UTC+9 Ramel Eshed wrote: > > On Saturday, September 30, 2017 at 5:00:38 PM UTC+3, Bram Moolenaar wrote: > > > Ramel Eshed wrote: > > > > > > > Running the following script in the gui (:ter

Re: Terminal is very slow in the gui

2017-10-10 Fir de Conversatie Ken Takata
Hi Ramel, 2017/10/11 Wed 6:08:33 UTC+9 Ramel Eshed wrote: > On Saturday, September 30, 2017 at 5:00:38 PM UTC+3, Bram Moolenaar wrote: > > Ramel Eshed wrote: > > > > > Running the following script in the gui (:terminal job.sh) takes more > > > than 10 seconds. During that time the screen in not u

Re: MANPAGER can't handle man pages with upper case letters in name

2017-10-10 Fir de Conversatie LCD 47
On 10 October 2017, Bram Moolenaar wrote: > > lcd wrote: > > > Per title: if MANPAGER is set to "env MAN_PN=1 vim -M +MANPAGER -", > > running "man Xorg" results in a message "Cannot find a 'xorg'.". > > > > The culprit is a "tolower()" in plugin/manpager.vim. Man page names > > are ca

Re: MANPAGER on OpenBSD

2017-10-10 Fir de Conversatie Bram Moolenaar
lcd wrote: > On OpenBSD the argument for the man pager is always passed as a > file. This means the environment variable MANPAGER has to be adjusted > like this: > > export MANPAGER="env MAN_PN=1 vim -M +MANPAGER" > > I haven't checked the sources for unexpected side effects, b

Re: MANPAGER can't handle man pages with upper case letters in name

2017-10-10 Fir de Conversatie Bram Moolenaar
lcd wrote: > Per title: if MANPAGER is set to "env MAN_PN=1 vim -M +MANPAGER -", > running "man Xorg" results in a message "Cannot find a 'xorg'.". > > The culprit is a "tolower()" in plugin/manpager.vim. Man page names > are case-sensitive on most UNIX systems. The patch below seems t

Re: Use of ICONV in src/Make_cyg_ming.mak is inconsistent with its value (tag v8.0.1184)

2017-10-10 Fir de Conversatie Bram Moolenaar
Michael Soyka wrote: > >> Vim Developers: > >> > >> In the file src/Make_cyg_ming.mak, the variable ICONV is given the value > >> "yes" on line 51, suggesting it is intended to be boolean valued.  It is > >> tested as a boolean on line 847 but is also used, I believe incorrectly, > >> on lines 84

Re: MANPAGER can't handle man pages with upper case letters in name

2017-10-10 Fir de Conversatie LCD 47
On 10 October 2017, LCD 47 wrote: > Per title: if MANPAGER is set to "env MAN_PN=1 vim -M +MANPAGER -", > running "man Xorg" results in a message "Cannot find a 'xorg'.". > > The culprit is a "tolower()" in plugin/manpager.vim. Man page names > are case-sensitive on most UNIX systems. T

MANPAGER on OpenBSD

2017-10-10 Fir de Conversatie LCD 47
On OpenBSD the argument for the man pager is always passed as a file. This means the environment variable MANPAGER has to be adjusted like this: export MANPAGER="env MAN_PN=1 vim -M +MANPAGER" I haven't checked the sources for unexpected side effects, but it seems to work. /

MANPAGER can't handle man pages with upper case letters in name

2017-10-10 Fir de Conversatie LCD 47
Per title: if MANPAGER is set to "env MAN_PN=1 vim -M +MANPAGER -", running "man Xorg" results in a message "Cannot find a 'xorg'.". The culprit is a "tolower()" in plugin/manpager.vim. Man page names are case-sensitive on most UNIX systems. The patch below seems to fix the problem.