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)
--
--
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
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
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
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.
> >
> >
>
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
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
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
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
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/
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
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
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
*
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
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
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
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
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
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
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.
> >
> >
> >
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
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
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
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.
> >
24 matches
Mail list logo