ctrl-c oddity with visual block insert

2007-05-07 Thread James Vega
line. vim -u NONE -N :vmap :insert foo bar baz . ggjjIXX The presence of the vmap isn't important. You can vunmap it immediately after. It's the mere act of defining a vmap that causes to act as expected. James -- GPG Key: 1024D/61326D40 2003-09-02 James Vega <[EM

Re: Does 'man' syntax do its job?

2007-01-03 Thread James Vega
e functionality without causing novice users to wonder what the heck is going on. James -- GPG Key: 1024D/61326D40 2003-09-02 James Vega <[EMAIL PROTECTED]> signature.asc Description: Digital signature

Re: [PATCH] cygwin: Trouble recognizing absolute path

2006-10-13 Thread James Vega
On Fri, Oct 13, 2006 at 10:34:40PM +0200, Corinna Vinschen wrote: > On Oct 13 16:06, James Vega wrote: > > On Fri, Oct 13, 2006 at 09:38:16PM +0200, Corinna Vinschen wrote: > > > Interesting enough it works in 6.4 without doing anything similar to my > > > patch

Re: [PATCH] cygwin: Trouble recognizing absolute path

2006-10-13 Thread James Vega
ame time would cause the 'swapfile already exists' message. Maybe this is related. The relevant code is sectioned off by '#ifdef HAVE_READLINK'/'#endif' sections in memline.c James -- GPG Key: 1024D/61326D40 2003-09-02 James Vega <[EMAIL PROTECTED]> signature.asc Description: Digital signature

Oddity with :s and \%V

2006-09-15 Thread James Vega
standing how this is supposed to work? James -- GPG Key: 1024D/61326D40 2003-09-02 James Vega <[EMAIL PROTECTED]> signature.asc Description: Digital signature

Re: testing patchlevel from script

2006-09-11 Thread James Vega
i > < j. The Vim build scripts have no knowledge of which patches have or haven't been applied. One can skip patches and an example of a situation where that might be done is if the patch applies to the extra tarball. If I'm not using that, I have no need for the patch(es) that app

Re: Fastest way to append line or char to a buffer

2006-08-30 Thread James Vega
this document: int a[6] = { [1] = v1, v2, [4] = v4 }; is equivalent to int a[6] = { 0, v1, v2, 0, v4, 0 }; Which behaves as Nikolai suggested and K&R explains. Any unspecified elements are initialized to 0. James -- GPG Key: 1024D/61326D40 2003-09-02 James Vega <[EMAIL PROTECTED]> signature.asc Description: Digital signature

Re: Invoke _gvimrc.vim / unexpected expansions

2006-08-11 Thread James Vega
extension on your _gvimrc (or _vimrc). :) That will fix 1). As for 2), you may have to edit the plugin to change that mapping so it doesn't override a normal Vim command. James -- GPG Key: 1024D/61326D40 2003-09-02 James Vega <[EMAIL PROTECTED]> signature.asc Description: Digital signature

Re: Patch 7.0.048

2006-08-08 Thread James Vega
mt . "'") > else > ! call system(a:cmd . " '" . nmt . "'") If the filename itself has single quotes, this will prematurely end the quoting. escape(nmt, "'") should probably be used as well. James -- GPG Key: 1024D/61326D40 2003-09-02 James Vega <[EMAIL PROTECTED]> signature.asc Description: Digital signature

Re: vim server ? security hole?

2006-07-26 Thread James Vega
ing vim you can easily try to get one > gvim instance to execute arbitrary commands as super user!! Performing a simple "su" saves the environment that you su'ed from. If you instead ran "su -", I imagine this would not work. James -- GPG Key: 1024D/61326D40 2003-09-02 Ja

Re: I just updated my Vim site

2006-06-06 Thread James Vega
On Tue, Jun 06, 2006 at 05:58:56PM +0200, A.J.Mechelynck wrote: > James Vega wrote: > >On Tue, Jun 06, 2006 at 03:30:32PM +0200, A.J.Mechelynck wrote: > > > >>James Vega wrote: > >> > >>>On Mon, Jun 05, 2006 at 11:10:21PM -0700, Hari Krishna Dara

Re: I just updated my Vim site

2006-06-06 Thread James Vega
On Tue, Jun 06, 2006 at 03:30:32PM +0200, A.J.Mechelynck wrote: > James Vega wrote: > >On Mon, Jun 05, 2006 at 11:10:21PM -0700, Hari Krishna Dara wrote: > > > >>Isn't there a cross-compiler for producing cygwin executables from > >>Linux? > >>

Re: I just updated my Vim site

2006-06-06 Thread James Vega
vim7 pre-release before I found Tony's site. I'm not sure if it can be used to create cygwin executables. James -- GPG Key: 1024D/61326D40 2003-09-02 James Vega <[EMAIL PROTECTED]> signature.asc Description: Digital signature

Re: [BUG] Swap file searched for in the wrong place

2006-05-17 Thread James Vega
(probably > because vim looks for the swap file in /tmp, instead of in /tmp/foo). This appears to be fixed in vim7. James -- GPG Key: 1024D/61326D40 2003-09-02 James Vega <[EMAIL PROTECTED]> signature.asc Description: Digital signature

Re: Comments about 7.0g

2006-05-02 Thread James Vega
enabled by default). VRML isn't the only filetype that sets up folding, but afaik most properly set it up in the filetype plugin. James -- GPG Key: 1024D/61326D40 2003-09-02 James Vega <[EMAIL PROTECTED]> signature.asc Description: Digital signature

Re: [PATCH] vim7/runtime/plugin/matchparen.vim

2006-05-02 Thread James Vega
st updating to the latest snapshot or using Vim's Sourceforge repository as both of those are much more recent. James -- GPG Key: 1024D/61326D40 2003-09-02 James Vega <[EMAIL PROTECTED]> signature.asc Description: Digital signature

Re: :for var in list

2006-04-25 Thread James Vega
hlist()) which would be confused by adding an additional loop with var = "". James -- GPG Key: 1024D/61326D40 2003-09-02 James Vega <[EMAIL PROTECTED]> signature.asc Description: Digital signature

Re: [vim 70d] switching tab pages

2006-04-13 Thread James Vega
may be confused by this, but I think that's more because they usually haven't fully grasped the concept of Vim being a modal editor. James -- GPG Key: 1024D/61326D40 2003-09-02 James Vega <[EMAIL PROTECTED]> signature.asc Description: Digital signature

Re: invisible bar in help tags

2006-04-13 Thread James Vega
ursor is elsewhere). > > I tried several colorschemes, they seem not to affect the bug. This seems to mainly affect things when bg=dark. With the various colorschemes I tried, the bars were either very hard to see or impossible to see without placing the cursor on them. With bg=light, I'm

vim --help starts Vim when built with gnome gui

2006-04-11 Thread James Vega
start Vim. If X is reachable, then all of the help will be displayed and Vim will not start, as expected. James -- GPG Key: 1024D/61326D40 2003-09-02 James Vega <[EMAIL PROTECTED]> signature.asc Description: Digital signature

Re: Vim version 7.0d BETA has been released

2006-04-11 Thread James Vega
hey haven't enabled syncing anonymous CVS with developer CVS yet. You can see the current status of the CVS service at <http://sourceforge.net/docs/A04>. James -- GPG Key: 1024D/61326D40 2003-09-02 James Vega <[EMAIL PROTECTED]> signature.asc Description: Digital signature