Escape sequences on gvim startup on linux

2012-03-16 Fir de Conversatie Mike Williams
Hi, Originally sent to vim_use but nothing has come up so far. I am using a self built version of VIM on centos 5.7, latest and greatest from the mercurial repo. It was built with the following config: ./configure --enable-gui=GTK2 --enable-cscope --with-features=big When I start VIM with

Re: [patch] aborting sign list and place commands

2012-03-16 Fir de Conversatie Bram Moolenaar
Christian Brabandt wrote: Hi Bram, when listing the sign definition or placements, you can't abort using the usual q/ESC/Ctrl-C keys. Attached patch fixes it, by checking the got_int signal. Please check and include. Thanks. Looks good, but I think checking got_int in the loop where

Patch 7.3.471

2012-03-16 Fir de Conversatie Bram Moolenaar
Patch 7.3.471 Problem:Can't abort listing placed signs. Solution: Check got_int. (Christian Brabandt) Files: src/buffer.c, src/ex_cmds.c *** ../vim-7.3.470/src/buffer.c 2012-03-07 22:52:30.0 +0100 --- src/buffer.c2012-03-16 13:54:48.0 +0100 *** ***

Re: gvim crash when switch to other tabs if NERDTree is opened

2012-03-16 Fir de Conversatie 驼峰
hi, bram when can this bug be fixed? I am waiting the crash fix for several days. thanks, mike On 3月14日, 下午2时31分, Christian Brabandt cbli...@256bit.org wrote: On Tue, March 13, 2012 22:16, Bram Moolenaar wrote: Christian Brabandt write: On Sa, 10 Mär 2012, 驼峰 wrote: my repro step:

Re: [patch] -G prevents starting the gui

2012-03-16 Fir de Conversatie Bram Moolenaar
Christian Brabandt wrote: Hi Bram, using the command line argument -g you can force the graphical version. But you can't prevent starting the gui version. This matters, if you want to start evim in the terminal (-y will always opens the gui). The attached patch fixes it, by allowing a

Is it possible to ignore runtime/doc/tags in .hgignore?

2012-03-16 Fir de Conversatie skeept
Hi, I would like to know if it is possible to include runtime/doc/tags in .hgignore? after I build vim this file shows as modified in mercurial and then when I try to pull again I get some kind of error message regarding uncommited local changes. Alternatively is there a mercurial command to

Issue 57 in vim: After creating a new line using CR C-o moves one character forward

2012-03-16 Fir de Conversatie vim
Status: New Owner: Labels: Type-Defect Priority-Medium New issue 57 by zyx@gmail.com: After creating a new line using CR C-o moves one character forward http://code.google.com/p/vim/issues/detail?id=57 What steps will reproduce the problem? After creating a new line using CR with

Re: [patch] -G prevents starting the gui

2012-03-16 Fir de Conversatie Marcin Szamotulski
On 18:02 Fri 16 Mar , Bram Moolenaar wrote: Christian Brabandt wrote: Hi Bram, using the command line argument -g you can force the graphical version. But you can't prevent starting the gui version. This matters, if you want to start evim in the terminal (-y will always

Re: [patch] -G prevents starting the gui

2012-03-16 Fir de Conversatie Taylor Hedberg
Marcin Szamotulski, Fri 2012-03-16 @ 17:38:18+: By the way: I can do 'vim -y' in the terminal and get terminal vim in easy mode (my vim is compiled without gui - this is how vim is compiled on Gentoo, gvim is compiled separately) and indeed I cannot save/quit. You can still hit C-O to

Re: Is it possible to ignore runtime/doc/tags in .hgignore?

2012-03-16 Fir de Conversatie Thilo Six
Hello skeept, Excerpt from skeept: Hi, I would like to know if it is possible to include runtime/doc/tags in .hgignore? This should work: ,[ .hgignore ]-- # use glob syntax syntax: glob tags `- -- snip -- Thanks.

Re: [patch] -G prevents starting the gui

2012-03-16 Fir de Conversatie Thilo Six
Hello Marcin, Excerpt from Marcin Szamotulski: -- snip -- By the way: I can do 'vim -y' in the terminal and get terminal vim in easy mode (my vim is compiled without gui - this is how vim is compiled on Gentoo, gvim is compiled separately) and indeed I cannot save/quit. C-l:quit HTH

Patch 7.3.472

2012-03-16 Fir de Conversatie Bram Moolenaar
Patch 7.3.472 Problem:Crash when using :redraw in a BufEnter autocommand and switching to another tab. (驼峰) Solution: Move triggering the the autocommands to after correcting the option values. Also check the row value to be out of bounds. (Christian

Patch 7.3.473

2012-03-16 Fir de Conversatie Bram Moolenaar
Patch 7.3.473 Problem:'cursorbind' does not work correctly in combination with 'virtualedit' set to all. Solution: Copy coladd. (Gary Johnson) Files: src/move.c *** ../vim-7.3.472/src/move.c 2012-02-04 23:34:57.0 +0100 --- src/move.c 2012-03-16

Re: Patch 7.3.473

2012-03-16 Fir de Conversatie Gary Johnson
On 2012-03-16, Bram Moolenaar wrote: Patch 7.3.473 Problem:'cursorbind' does not work correctly in combination with 'virtualedit' set to all. Solution: Copy coladd. (Gary Johnson) Files:src/move.c Thank you! Regards, Gary -- You received this message from the

Patch 7.3.474

2012-03-16 Fir de Conversatie Bram Moolenaar
Patch 7.3.474 Problem:Perl build with gcc 4 fails. Solution: Remove XS() statements. (Yasuhiro Matsumoto) Files: src/if_perl.xs *** ../vim-7.3.473/src/if_perl.xs 2012-02-12 00:31:47.0 +0100 --- src/if_perl.xs 2012-03-16 19:33:23.0 +0100 *** ***

Re: [patch] -G prevents starting the gui

2012-03-16 Fir de Conversatie Christian Brabandt
Hi Marcin! On Fr, 16 Mär 2012, Marcin Szamotulski wrote: On 18:02 Fri 16 Mar , Bram Moolenaar wrote: Christian Brabandt wrote: Hi Bram, using the command line argument -g you can force the graphical version. But you can't prevent starting the gui version. This

Re: gvim crash when switch to other tabs if NERDTree is opened

2012-03-16 Fir de Conversatie Christian Brabandt
Hi 驼峰! Please don't top poste. This has been told you already several times. See http://en.wikipedia.org/wiki/Posting_style for an explanation, what this means. On Fr, 16 Mär 2012, 驼峰 wrote: when can this bug be fixed? I am waiting the crash fix for several days. This has just been fixed

Re: A strang char when editing

2012-03-16 Fir de Conversatie Christian Brabandt
Hi Gary! On Do, 15 Mär 2012, Gary Johnson wrote: That's an odd error message, since there are no search commands in that sequence, as I understood it. Using a different notation, here's what I typed. C-VG$ABSBSEsc Was this ever supposed to work? Anyway, this is a bug. I have a

Re: [patch] -G prevents starting the gui

2012-03-16 Fir de Conversatie James McCoy
On Fri, Mar 16, 2012 at 09:17:17PM +0100, Christian Brabandt wrote: On Fr, 16 Mär 2012, Bram Moolenaar wrote: Why would you want to use easy mode in a terminal? Because I don't need to start insert mode. You could do something similar with a VimEnter autocmd that calls :startinsert. evim

Re: [patch] -G prevents starting the gui

2012-03-16 Fir de Conversatie Taylor Hedberg
James McCoy, Fri 2012-03-16 @ 17:26:24-0400: You could do something similar with a VimEnter autocmd that calls :startinsert. evim does a lot more than just start you off in insert mode. Or, on a one-off basis, just start vim with vim +'set insertmode' or vim +'se im' for short.