can't write to memory at vimvars[...].vv_str

2006-05-07 Thread Eric Arnold
I'm pretty rusty, but I've run into something that I don't understand. for( str = vimvars[VV_GETCHARTYPE].vv_str; *str != NUL ; str++ ) *str = tolower( *str ); In gdb, it tells me "cannot access memory at address " whenever I try to set to *str. The memory at vimvars[VV_GETCH

Re: More insert-mode woes

2006-05-07 Thread Bram Moolenaar
Robert Webb wrote: > During insert-mode completion, there's no visual feedback when hitting > backspace. > > Just now I typed some characters and hit ^P. It went searching > through header files so I realised I'd made a typo, since the match > should have come from the current file. I had type

Re: 7.0e: Problem with vertical splits on windows xp

2006-05-07 Thread James Harvey
On Sat, May 06, 2006 at 10:23:50PM +0100, James Harvey wrote: > On Sat, May 06, 2006 at 10:13:36PM +0200, Bram Moolenaar wrote: > > James Harvey wrote: > > > [snip description of multi-monitor resize window bug] > > > > Your code fails when using one monitor and the taskbar is at the left or > > t

Re: 7.0e: Problem with vertical splits on windows xp

2006-05-07 Thread Bram Moolenaar
James Harvey wrote: > On Sat, May 06, 2006 at 10:23:50PM +0100, James Harvey wrote: > > On Sat, May 06, 2006 at 10:13:36PM +0200, Bram Moolenaar wrote: > > > James Harvey wrote: > > > > [snip description of multi-monitor resize window bug] > > > > > > Your code fails when using one monitor and t

Re: 7.0e: Problem with vertical splits on windows xp

2006-05-07 Thread James Harvey
(following up to myself, first sign of madness) On Sun, May 07, 2006 at 11:58:12AM +0100, James Harvey wrote: > Adding debug to the code tells me that the SetWindowPos is doing the > right thing, because a GetWindowRect immediately afterwards is returning > the -ve coordinates passed in. So my hun

Re: 7.0e: Problem with vertical splits on windows xp

2006-05-07 Thread Bram Moolenaar
James Harvey wrote: > (following up to myself, first sign of madness) > > On Sun, May 07, 2006 at 11:58:12AM +0100, James Harvey wrote: > > Adding debug to the code tells me that the SetWindowPos is doing the > > right thing, because a GetWindowRect immediately afterwards is returning > > the -v

Re: 7.0e: Problem with vertical splits on windows xp

2006-05-07 Thread James Harvey
On Sun, May 07, 2006 at 02:07:51PM +0200, Bram Moolenaar wrote: > > If it's essential for other systems to not have negative coordinates > > here, it might be worth the windows gui_mch_*_winpos functions > > offsetting from the top-right of the entire virtual screen; this is > > SM_XVIRTUALSCREEN a

Re: Where to submit a patch/modification for consideration?

2006-05-07 Thread Eric Arnold
On 5/6/06, Mikolaj Machowski <[EMAIL PROTECTED]> wrote: Dnia sobota, 6 maja 2006 00:01, Eric Arnold napisał: > On 5/5/06, Mikolaj Machowski <[EMAIL PROTECTED]> wrote: > > Dnia piątek, 5 maja 2006 14:35, Eric Arnold napisał: > > > I think vim-dev@vim.org is probably a place to start... > > > > > >

Re: Where to submit a patch/modification for consideration?

2006-05-07 Thread Yakov Lerner
On 5/7/06, Eric Arnold <[EMAIL PROTECTED]> wrote: Can you clarify coulpe of points. 1. a) Is this event fired when getchar() or vim extract event from typeahead buffer for processing ?, or b) only when getchar() is invoked ? , or c) when the char is inserted into typeahead buffer ? Can you c

Re: Where to submit a patch/modification for consideration?

2006-05-07 Thread Eric Arnold
On 5/7/06, Yakov Lerner <[EMAIL PROTECTED]> wrote: On 5/7/06, Eric Arnold <[EMAIL PROTECTED]> wrote: Can you clarify coulpe of points. 1. a) Is this event fired when getchar() or vim extract event from typeahead buffer for processing ?, or yes b) only when getchar() is invoked ? , or c

Re: Where to submit a patch/modification for consideration?

2006-05-07 Thread Yakov Lerner
On 5/7/06, Eric Arnold <[EMAIL PROTECTED]> wrote: On 5/7/06, Yakov Lerner <[EMAIL PROTECTED]> wrote: > On 5/7/06, Eric Arnold <[EMAIL PROTECTED]> wrote: > > Can you clarify coulpe of points. > > 1. > a) Is this event fired when getchar() or vim extract event > from typeahead buffer for proces

Re: Where to submit a patch/modification for consideration?

2006-05-07 Thread Eric Arnold
On 5/7/06, Yakov Lerner <[EMAIL PROTECTED]> wrote: On 5/7/06, Eric Arnold <[EMAIL PROTECTED]> wrote: > On 5/7/06, Yakov Lerner <[EMAIL PROTECTED]> wrote: > > On 5/7/06, Eric Arnold <[EMAIL PROTECTED]> wrote: > > > > Can you clarify coulpe of points. > > > > 1. > > a) Is this event fired when getc

Re: Where to submit a patch/modification for consideration?

2006-05-07 Thread Eric Arnold
> > Can I assign to v:getchar a string like "\" ? Yes Assuming it is translated to a 3 byte func key string in the context you use it,

Vim 7 pre-announcement

2006-05-07 Thread Bram Moolenaar
Vim 7 is out! Before announcing it everywhere I'll wait until the Subversion repository has it. And I need to update the website. Since version 7.0g BETA quite a few things changed. Too many perhaps, but I can't postpone the release any longer. Hopefully the last-minute changes don't cause mo

Re: Vim 7 pre-announcement

2006-05-07 Thread Yakov Lerner
On 5/7/06, Bram Moolenaar <[EMAIL PROTECTED]> wrote: Vim 7 is out! Before announcing it everywhere I'll wait until the Subversion repository has it. And I need to update the website. Will there be a party ? Yakov

Re: QuickFixCmdPost

2006-05-07 Thread Eric Van Dewoestine
On 4/24/06, Eric Van Dewoestine <[EMAIL PROTECTED]> wrote: > > I'll move it then. Please try it out with the next snapshot. > Appears to be working as expected. Actually, I've found one small issue with this... If the executed make command results in one or more errors added to the quickfix,

Change wildmode w/ 'longest' to be behave like completeopt w/ 'longest'

2006-05-07 Thread Eric Van Dewoestine
When starting vim as follows vim -u NONE -c "set nocompatible | set wildmenu | set wildmode=longest:full,full" if you perform :e you get a list of commands starting with 'e' and the command line is unchanged (still only contains 'e'). The only issue, is that the first entry in the list is high

Re: Vim 7 pre-announcement

2006-05-07 Thread Ali Akcaagac
On Sun, 2006-05-07 at 17:58 +0200, Bram Moolenaar wrote: > Vim 7 is out! Congrats and thanks for the work and the nice editor. greetings, Ali Akcaagac

Re: Vim 7 pre-announcement

2006-05-07 Thread dharana
Congrats to all the people involved. Vim is making my editing life a lot easier and enjoyable. Bram Moolenaar wrote: Vim 7 is out! Before announcing it everywhere I'll wait until the Subversion repository has it. And I need to update the website. Since version 7.0g BETA quite a few things ch

Re: QuickFixCmdPost

2006-05-07 Thread Bram Moolenaar
Eric Van Dewoestine wrote: > On 4/24/06, Eric Van Dewoestine <[EMAIL PROTECTED]> wrote: > > > > > > I'll move it then. Please try it out with the next snapshot. > > > > > > > Appears to be working as expected. > > Actually, I've found one small issue with this... > > If the executed make comma

Re: Behavior of synIDattr() varies

2006-05-07 Thread Thomas Haselwanter
Yakov Lerner wrote: On 5/6/06, Thomas Haselwanter <[EMAIL PROTECTED]> wrote: Hi, Vims excellent script support just asks to be exploited, and I am in the process of putting 2html.vim to use. I have been getting different results from this script, which I've tracked down to synIDattr() returning

Re: QuickFixCmdPost

2006-05-07 Thread Eric Van Dewoestine
Do you mean that the autocommand removes all matches? Well, somehow I think it's good to give the message then. But perhaps it's just another execuse to give this deep error message :-). Yes, the autocommand may remove all entries from the quickfix list. My underlying issue is that I run jun

Re: Vim 7 pre-announcement

2006-05-07 Thread Bill McCarthy
On Sun 7-May-06 10:58am -0600, Bram Moolenaar wrote: > Vim 7 is out! Congratulations! I looked at the release area and noticed that the vim70 tree for Windows is still different from what is available by CVS or SVN. This remains a minor inconvenience for Windows users - either we use CVS (or SV

Re: Vim 7 pre-announcement

2006-05-07 Thread Bram Moolenaar
Bill McCarthy wrote: > I looked at the release area and noticed that the vim70 tree > for Windows is still different from what is available by CVS > or SVN. This remains a minor inconvenience for Windows > users - either we use CVS (or SVN with its unix text files) > and copy over to a separate

Re: Behavior of synIDattr() varies

2006-05-07 Thread Yakov Lerner
`On 5/8/06, Thomas Haselwanter <[EMAIL PROTECTED]> wrote: Yakov Lerner wrote: > On 5/6/06, Thomas Haselwanter <[EMAIL PROTECTED]> wrote: >> Hi, >> >> Vims excellent script support just asks to be exploited, and I am in the >> process of putting 2html.vim to use. I have been getting different >> r

Re: Vim 7 pre-announcement

2006-05-07 Thread Gautam Iyer
On Sun, May 07, 2006 at 05:58:08PM +0200, Bram Moolenaar wrote: > Before announcing it everywhere I'll wait until the Subversion > repository has it. And I need to update the website. Ooh. Subversion repository! Thanks using the SourceForge subversion facilities. The CVS is *still* broken, and I

Re: Vim 7 pre-announcement

2006-05-07 Thread Linsong
Bram Moolenaar wrote: Vim 7 is out! Thanks for you guys's excellent work! Vim has saved me a lot and now vim7 is even better! I wish vim becoming better and better! Thanks again! :) Best regards, Vincent