Re: [vim/vim] '$q q' shows at the first line (#2008)

2017-08-23 Fir de Conversatie h_east
Hi Ken and Christian, 2017-8-24(Thu) 14:04:13 UTC+9 Christian Brabandt: > For putty, you should set $TERM to some putty value, I believe (e.g. > putty-256color) Thank you for suggesting. I set to putty-256color to $TERM and my issue was solved. -- Best regards, Hirohito Higashi (h_east) -- --

Re: [vim/vim] '$q q' shows at the first line (#2008)

2017-08-23 Fir de Conversatie h_east
Hi Bram, 2017-8-24(Thu) 7:06:51 UTC+9 vim-dev ML: > Hirohito Higashi wrote: > > > > > 2017-8-24(Thu) 0:43:18 UTC+9 h_east: > > > > Hi Marcus and All, > > > > > > > > 2017-8-23(Wed) 21:09:33 UTC+9 Marcus Karpoff: > > > > > I ran into this and figured it was somesort of bug with plugins that

Re: [vim/vim] TabEnter :cwindow opening extra windows on every tab (#2005)

2017-08-23 Fir de Conversatie Yegappan Lakshmanan
Hi, On Wed, Aug 23, 2017 at 8:37 AM, Yegappan Lakshmanan wrote: > Hi, > > On Tue, Aug 22, 2017 at 2:22 AM, FocusedWolf > wrote: >> The following auto-command is giving me much grief: >> >> augroup Open_QuickFix_On_Every_Tab >> au! >> autocmd TabEnter * cwindow >> augroup END >> >> The issue exi

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

2017-08-23 Fir de Conversatie Bart Louwers
I filed this as a bug https://github.com/vim/vim/issues/2019 -- -- 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 a

Re: [vim/vim] '$q q' shows at the first line (#2008)

2017-08-23 Fir de Conversatie Bram Moolenaar
Hirohito Higashi wrote: > 2017-8-24(Thu) 0:43:18 UTC+9 h_east: > > Hi Marcus and All, > > > > 2017-8-23(Wed) 21:09:33 UTC+9 Marcus Karpoff: > > > I ran into this and figured it was somesort of bug with plugins that I > > > have installed. It happens on both ubuntu 16.04 and on WSL. > > > > >

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

2017-08-23 Fir de Conversatie Bram Moolenaar
Christian Brabandt wrote: > Hi Bram, > did this message got unnoticed? I did see this message. -- "How is your new girlfriend?" "90-60-90 man!" "What, pale purple?" /// Bram Moolenaar -- b...@moolenaar.net -- http://www.Moolenaar.net \\\ ///sponsor Vim, vote for features -- http://

Patch 8.0.0992

2017-08-23 Fir de Conversatie Bram Moolenaar
Patch 8.0.0992 Problem:Terminal title is wrong when 'encoding' is DBCS. Solution: Convert the title from DBCS to utf-8. (Yasuhiro Matsumoto, closes #2009) Files: src/terminal.c *** ../vim-8.0.0991/src/terminal.c 2017-08-23 23:36:18.847525696 +0200 --- src/terminal.c

Patch 8.0.0991

2017-08-23 Fir de Conversatie Bram Moolenaar
Patch 8.0.0991 Problem:Using wrong character conversion for DBCS. Solution: Use utf_char2bytes instead of mb_char2bytes. (Yasuhiro Matsumoto, closes #2012) Files: src/terminal.c *** ../vim-8.0.0990/src/terminal.c 2017-08-23 23:10:15.861895854 +0200 --- src/terminal.c

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

2017-08-23 Fir de Conversatie Bram Moolenaar
Rajdeep wrote: > 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

Patch 8.0.0990

2017-08-23 Fir de Conversatie Bram Moolenaar
Patch 8.0.0990 Problem:When 'encoding' is a double-byte encoding, pasting a register into a terminal ends up with the wrong characters. Solution: Convert from 'encoding' to utf-8. (Yasuhiro Matsumoto, closes #2007) Files: src/terminal.c *** ../vim-8.0.0989/src/

Re: [patch][win32] Enable to change Tcl dll name

2017-08-23 Fir de Conversatie Bram Moolenaar
Ken Takata wrote: > ActiveTcl 8.6 came with the dll name tcl86.dll until 8.6.4, however > ActiveTcl 8.6.6 comes with tcl86t.dll (it has an extra 't'). > > Attached patch enables to change the dll name. Thanks. They don't make it easy for us... -- login: yes password: I don't know, please tel

Patch 8.0.0989

2017-08-23 Fir de Conversatie Bram Moolenaar
Patch 8.0.0989 Problem:ActiveTcl dll name has changed in 8.6.6. Solution: Adjust the makefile. (Ken Takata) Files: src/INSTALLpc.txt, src/Make_cyg_ming.mak, src/Make_mvc.mak *** ../vim-8.0.0988/src/INSTALLpc.txt 2017-07-24 22:26:39.757774872 +0200 --- src/INSTALLpc.txt 2017-08-23

Patch 8.0.0988

2017-08-23 Fir de Conversatie Bram Moolenaar
Patch 8.0.0988 Problem:Warning from Covscan about using NULL pointer. Solution: Add extra check for NULL. (zdohnal) Files: src/fileio.c, src/undo.c *** ../vim-8.0.0987/src/fileio.c2017-08-12 14:32:25.902039902 +0200 --- src/fileio.c2017-08-23 22:11:15.236461779 +0200 *

Re: Issues discovered by covscan + patch

2017-08-23 Fir de Conversatie Bram Moolenaar
zdohnal wrote: > I found out these issues with covscan: > > Error: FORWARD_NULL (CWE-476): [#def1] > vim74/src/fileio.c:1164: assign_zero: Assigning: "curbuf->b_cryptstate" = > "NULL". > vim74/src/fileio.c:1345: var_deref_model: Passing null pointer > "curbuf->b_cryptstate" to "crypt_works_inp

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

2017-08-23 Fir de Conversatie Bram Moolenaar
Rajdeep wrote: > 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

Re: [vim/vim] '$q q' shows at the first line (#2008)

2017-08-23 Fir de Conversatie h_east
2017-8-24(Thu) 0:43:18 UTC+9 h_east: > Hi Marcus and All, > > 2017-8-23(Wed) 21:09:33 UTC+9 Marcus Karpoff: > > I ran into this and figured it was somesort of bug with plugins that I have > > installed. It happens on both ubuntu 16.04 and on WSL. > > > I also encountered the same issue. > This

Re: [vim/vim] '$q q' shows at the first line (#2008)

2017-08-23 Fir de Conversatie h_east
Hi Marcus and All, 2017-8-23(Wed) 21:09:33 UTC+9 Marcus Karpoff: > I ran into this and figured it was somesort of bug with plugins that I have > installed. It happens on both ubuntu 16.04 and on WSL. I also encountered the same issue. This issue has occurred from Vim 8.0.0973. My env: Vim on f

Re: [vim/vim] TabEnter :cwindow opening extra windows on every tab (#2005)

2017-08-23 Fir de Conversatie Yegappan Lakshmanan
Hi, On Tue, Aug 22, 2017 at 2:22 AM, FocusedWolf wrote: > The following auto-command is giving me much grief: > > augroup Open_QuickFix_On_Every_Tab > au! > autocmd TabEnter * cwindow > augroup END > > The issue exists on Gvim for windows and on Linux. Untested on macvim, but > later i can test t

Issues discovered by covscan + patch

2017-08-23 Fir de Conversatie zdohnal
Hi, I found out these issues with covscan: Error: FORWARD_NULL (CWE-476): [#def1] vim74/src/fileio.c:1164: assign_zero: Assigning: "curbuf->b_cryptstate" = "NULL". vim74/src/fileio.c:1345: var_deref_model: Passing null pointer "curbuf->b_cryptstate" to "crypt_works_inplace", which dereferences

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

2017-08-23 Fir de Conversatie Kazunobu Kuriyama
2017-08-23 22:04 GMT+09:00 justrajdeep : > On Wednesday, August 23, 2017 at 12:01:46 AM UTC-4, Kazunobu Kuriyama > wrote: > > 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. > > > > > >

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

2017-08-23 Fir de Conversatie justrajdeep
On Wednesday, August 23, 2017 at 12:01:46 AM UTC-4, Kazunobu Kuriyama wrote: > 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 s

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

2017-08-23 Fir de Conversatie justrajdeep
On Wednesday, August 23, 2017 at 12:01:41 AM UTC-4, Kazunobu Kuriyama wrote: > 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

[patch][win32] Enable to change Tcl dll name

2017-08-23 Fir de Conversatie Ken Takata
Hi, ActiveTcl 8.6 came with the dll name tcl86.dll until 8.6.4, however ActiveTcl 8.6.6 comes with tcl86t.dll (it has an extra 't'). Attached patch enables to change the dll name. Regards, Ken Takata -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply

Re: strikethrough text in gvim

2017-08-23 Fir de Conversatie Ken Takata
Hi, 2016/7/18 Mon 11:16:44 UTC+9 Ken Takata wrote: > Hi, > > 2016/4/27 Wed 0:41:07 UTC+9 Ken Takata wrote: > > Hi, > > > > 2016/4/26 Tue 22:57:57 UTC+9 Christian Brabandt wrote: > > > Am 2016-04-26 15:51, schrieb Ken Takata: > > > [strikethrough patch] > > > > > > > Thank you for checking. > >