Re: [vim/vim] ctrl-w,ctrl-u not work in insert-mode (#1177)

2016-10-16 Fir de Conversatie Gary Johnson
That's because your 'backspace' option does not include "start". Try this :set bs+=start and see :help 'backspace' 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,

Re: command line encoding

2016-10-16 Fir de Conversatie Xavier de Gaye
On 10/16/2016 10:26 PM, Xavier de Gaye wrote: > vim version: 8.0.13 > python version: 3.5.2 > Linux 4.7.6-1-ARCH: archlinux > > When running the following command from the gvim command line: > :!python -c "print(input('Prompt: '))" > > the output when entering '0' from the main keyboard: >

command line encoding

2016-10-16 Fir de Conversatie Xavier de Gaye
vim version: 8.0.13 python version: 3.5.2 Linux 4.7.6-1-ARCH: archlinux When running the following command from the gvim command line: :!python -c "print(input('Prompt: '))" the output when entering '0' from the main keyboard: Prompt: 0 0 and the output when entering 0 from the

Re: [vim/vim] Is it possible that vim support php like Python? (#1172)

2016-10-16 Fir de Conversatie Matěj Cepl
On 2016-10-16, 07:29 GMT, Rick Woo wrote: >> I personally don't think it is worthwile to have yet another >> language embedded into Vim. > > Then why put lua, perl, python 2 and 3 and tcl in Vim. > Why phper can't have right or fun like them??? I agree … we should get rid of TCL, Lua, and Perl

Re: ":set cmdheight=2" doesn't work

2016-10-16 Fir de Conversatie Tony Mechelynck
gvim 8.0.0041 seems unaffected and yet the description of patch 41 seems to be for something else. I shall have to check if and when the problem reappears. Best regards, Tony. -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are

Re: ":set cmdheight=2" doesn't work

2016-10-16 Fir de Conversatie Tony Mechelynck
Oops: I meant ":wa | wv" On Sun, Oct 16, 2016 at 4:04 PM, Tony Mechelynck wrote: > I don't know exactly when this appeared but gvim 8.0.0040 (Huge, GTK3, > Linux64) is affected. > > After ":set cmdheight=2" the command -line height (between the bottom > statusline

Re: ":set cmdheight=2" doesn't work

2016-10-16 Fir de Conversatie Tony Mechelynck
On Sun, Oct 16, 2016 at 4:04 PM, Tony Mechelynck wrote: > I don't know exactly when this appeared but gvim 8.0.0040 (Huge, GTK3, > Linux64) is affected. > > After ":set cmdheight=2" the command -line height (between the bottom > statusline and the bottom of the Vim

":set cmdheight=2" doesn't work

2016-10-16 Fir de Conversatie Tony Mechelynck
I don't know exactly when this appeared but gvim 8.0.0040 (Huge, GTK3, Linux64) is affected. After ":set cmdheight=2" the command -line height (between the bottom statusline and the bottom of the Vim GUI) is still only one line, and after ":xa | wv", which generates two lines of output, I get a

Patch 8.0.0041

2016-10-16 Fir de Conversatie Bram Moolenaar
Patch 8.0.0041 Problem:When using Insert mode completion but not actually inserting anything an undo item is still created. (Tommy Allen) Solution: Do not call stop_arrow() when not inserting anything. Files: src/edit.c, src/testdir/test_popup.vim ***

Patch 8.0.0040

2016-10-16 Fir de Conversatie Bram Moolenaar
Patch 8.0.0040 (after 8.0.0033) Problem:Whole line highlighting with matchaddpos() does not work. Solution: Check for zero length. (Hirohito Higashi) Files: src/screen.c, src/testdir/test_match.vim *** ../vim-8.0.0039/src/screen.c2016-10-15 14:56:25.868257421 +0200 ---

Re: Patch 8.0.0033

2016-10-16 Fir de Conversatie Bram Moolenaar
Hirohito Higashi wrote: > 2016-10-15(Sat) 21:57:02 UTC+9 Bram Moolenaar: > > Patch 8.0.0033 > > Problem:Cannot use overlapping positions with matchaddpos(). > > Solution: Check end of match. (Ozaki Kiichi) Add a test (Hirohito Higashi) > > Files: src/screen.c,

Re: Patch 8.0.0033

2016-10-16 Fir de Conversatie h_east
Hi Bram and list, 2016-10-15(Sat) 21:57:02 UTC+9 Bram Moolenaar: > Patch 8.0.0033 > Problem:Cannot use overlapping positions with matchaddpos(). > Solution: Check end of match. (Ozaki Kiichi) Add a test (Hirohito Higashi) > Files: src/screen.c, src/testdir/test_match.vim > > > ***