Re: [vim/vim] Session with multiple windows only restores folds for one window (#1958)

2017-08-22 Fir de Conversatie Christian Brabandt
Hi Bram, did this message got unnoticed? Best, Christian -- -- 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: [vim/vim] Indent: bogus characters inserted in visual-block append

2017-08-22 Fir de Conversatie Christian Brabandt
On Di, 22 Aug 2017, Bram Moolenaar wrote: > I only see a few lines of code here. Is there a patch (with a test)? It is here: https://groups.google.com/d/msg/vim_dev/uMsaEfGexoI/8sUyU_aFDAAJ Best, Christian -- Man hat den Epikur, der ein armer Hund war wie ich, sehr missverstanden, wenn er da

Re: Possible bug C++ string literal and cindent feature

2017-08-22 Fir de Conversatie Bart Louwers
I was intended to to refer to the *raw* string literal specifically. So (6) on this list. http://en.cppreference.com/w/cpp/language/string_literal E.g. R"(test)" -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. Fo

Re: set confirm hangs gvim when trying to close it with embedded terminal open

2017-08-22 Fir de Conversatie Kazunobu Kuriyama
2017-08-23 7:41 GMT+09:00 justrajdeep : > Hi > > Hi vim_dev > > I am using gvim version 8.0.987 in x86_64 based RHEL 6 system. > > Gvim is compiled with +terminal support. > > If I put set confirm in my .vimrc and try to quit gvim in which an > embedded terminal is open, it opens the popup and ask

Re: not able to switch tab with mouse when cursor is in the terminal

2017-08-22 Fir de Conversatie Kazunobu Kuriyama
2017-08-23 7:34 GMT+09:00 justrajdeep : > Hi vim_dev > > I am using gvim version 8.0.987 in x86_64 based RHEL 6 system. > > Gvim is compiled with +terminal support. > > When i open terminal and cursor is blinking in terminal, it does not allow > to switch to another tab, which is present, using mo

Re: Vim does NOT ignore the case even if diffopt=icase

2017-08-22 Fir de Conversatie Rick Howe
> Generally I think this is a good idea. Can you please also write a test > for this? Yes, I tried as follows. --- src/testdir/test_diffmode_orig.vim 2017-05-17 15:00:05.107523200 +0900 +++ src/testdir/test_diffmode.vim 2017-08-23 11:31:34.266084500 +0900 @@ -280,13 +280,13 @@ set diff

set confirm hangs gvim when trying to close it with embedded terminal open

2017-08-22 Fir de Conversatie justrajdeep
Hi Hi vim_dev I am using gvim version 8.0.987 in x86_64 based RHEL 6 system. Gvim is compiled with +terminal support. If I put set confirm in my .vimrc and try to quit gvim in which an embedded terminal is open, it opens the popup and asks if i want to save changes to !csh? No matter which

not able to switch tab with mouse when cursor is in the terminal

2017-08-22 Fir de Conversatie justrajdeep
Hi vim_dev I am using gvim version 8.0.987 in x86_64 based RHEL 6 system. Gvim is compiled with +terminal support. When i open terminal and cursor is blinking in terminal, it does not allow to switch to another tab, which is present, using mouse. The tab gets selected but the frame does not ch

Patch 8.0.0987

2017-08-22 Fir de Conversatie Bram Moolenaar
Patch 8.0.0987 Problem:terminal: second byte of double-byte char wrong Solution: Set the second byte to NUL only for utf-8 and non-multibyte. Files: src/terminal.c *** ../vim-8.0.0986/src/terminal.c 2017-08-22 22:21:33.497436406 +0200 --- src/terminal.c 2017-08-22 22:26:11.7

Patch 8.0.0986

2017-08-22 Fir de Conversatie Bram Moolenaar
Patch 8.0.0986 Problem:Terminal feature always requires multi-byte feature. Solution: Remove #ifdef FEAT_MBYTE, disable terminal without multi-byte. Files: src/terminal.c, src/feature.h *** ../vim-8.0.0985/src/terminal.c 2017-08-22 20:33:48.097449744 +0200 --- src/terminal.c

Re: Vim does NOT ignore the case even if diffopt=icase

2017-08-22 Fir de Conversatie Bram Moolenaar
Rick Howe wrote: > I would like to propose this enhancement to apply not only 'iwhite' but > also 'icase' of 'diffopt' on DiffText. Thanks for looking into this. Generally I think this is a good idea. Can you please also write a test for this? About the code: I think the STRNCMP() is not nee

Re: [vim/vim] Indent: bogus characters inserted in visual-block append

2017-08-22 Fir de Conversatie Bram Moolenaar
Vitor Antunes wrote: > On Friday, 12 May 2017 15:37:25 UTC+1, Vitor Antunes wrote: > > On Tuesday, 14 March 2017 10:26:15 UTC, Christian Brabandt wrote: > > > Hi Bram! > > > > > > On Do, 09 M=C3=A4r 2017, Bram Moolenaar wrote: > > > > > > > This can use skipwhite(). There are several other pla

Patch 8.0.0985

2017-08-22 Fir de Conversatie Bram Moolenaar
Patch 8.0.0985 Problem:Libvterm has its own idea of character width. Solution: Use the Vim functions for character width and composing to avoid a mismatch. (idea by Yasuhiro Matsumoto) Files: src/Makefile, src/libvterm/src/unicode.c, src/mbyte.c, src/proto/mbyte.

Re: [vim/vim] Using vim from the terminal: too many command arguments (#2002)

2017-08-22 Fir de Conversatie Tony Mechelynck
On Tue, Aug 22, 2017 at 4:17 PM, Miles Cranmer wrote: > Thanks, Tony! I will re-implement my wrapper with the -S command and a tmp > file to hold commands. > > Out of curiosity, why does the limit of 10 -c or --cmd's exist? > > Best regards, > Miles I don't know, it was already there when I start

Patch 8.0.0984

2017-08-22 Fir de Conversatie Bram Moolenaar
Patch 8.0.0984 Problem:Terminal blinking cursor not correct in the GUI. Solution: Set blinkoff correctly. Also make the cursor blink on MS-Windows by default. (Ken Takata) Files: src/terminal.c *** ../vim-8.0.0983/src/terminal.c 2017-08-21 22:01:23.174402425 +0200 --

Re: [patch] Make terminal cursor blinking on Windows by default

2017-08-22 Fir de Conversatie Bram Moolenaar
Ken Takata wrote: > Blinking cursor was disabled by the patch 8.0.0981, however I think it > should be enabled on Windows. Because Windows Command Prompt uses > blinking cursor by default, and also gvim.exe uses blinking cursor by > default. What do you think? > > Additionally, I found a mista

Re: :append with bracketed paste mode doesn't work well

2017-08-22 Fir de Conversatie Bram Moolenaar
Ken Takata wrote: > Someone reported that :append doesn't work properly with the bracketed paste > mode if pasted text includes newline. > > E.g.: > Assume that the clipboard contains the following two lines: > > Hello > World > > > When bracketed paste mode is disabled, execute `:append` the

[patch] Make terminal cursor blinking on Windows by default

2017-08-22 Fir de Conversatie Ken Takata
Hi, Blinking cursor was disabled by the patch 8.0.0981, however I think it should be enabled on Windows. Because Windows Command Prompt uses blinking cursor by default, and also gvim.exe uses blinking cursor by default. What do you think? Additionally, I found a mistake in the patch 8.0.0921. e

Re: [vim/vim] Indent: bogus characters inserted in visual-block append

2017-08-22 Fir de Conversatie Vitor Antunes
Hi Bram, On Friday, 12 May 2017 15:37:25 UTC+1, Vitor Antunes wrote: > On Tuesday, 14 March 2017 10:26:15 UTC, Christian Brabandt wrote: > > Hi Bram! > > > > On Do, 09 Mär 2017, Bram Moolenaar wrote: > > > > > This can use skipwhite(). There are several other places where this > > > computation

Re: [vim/vim] Vim 8.0.0918 make cursor blinks in urxvt (#1986)

2017-08-22 Fir de Conversatie zdohnal
Cursor is working fine, thank you for the patch! -- -- 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 subscribe

:append with bracketed paste mode doesn't work well

2017-08-22 Fir de Conversatie Ken Takata
Hi, Someone reported that :append doesn't work properly with the bracketed paste mode if pasted text includes newline. E.g.: Assume that the clipboard contains the following two lines: Hello World When bracketed paste mode is disabled, execute `:append` then paste the text and type ".", the tw