Sudden Trouble Updating with Aap

2007-01-15 Thread Marv Boyes
Hello, all. I've been using Aap to keep up on all of the latest patches since Vim 7.0 was released, and until patch 183 everything worked splendidly. Now I get this when I attempt 'aap --update' from my Vim build directory: Aap: Updating recipe "main.aap" Aap: Attempting download of "http://w

RE: omni complete for php is really slooow

2007-01-15 Thread Vu The Cuong
Coud anyone hep me hic hic :( Does omni complete for php it can not be improved speed? Tnx in advanced -Original Message- From: Vu The Cuong Sent: Monday, January 15, 2007 1:04 PM To: vim users list Subject: omni complete for php is really slooow Dear all The mail subject says it all:

Re: Upgrading or enabling features in vim

2007-01-15 Thread Gary Johnson
On 2007-01-15, Erin Spiceland <[EMAIL PROTECTED]> wrote: > > On 2007-01-15, Erin Spiceland <[EMAIL PROTECTED]> wrote: > > > > > On Mon, 2007-01-15 at 14:55 -0800, Gary Johnson wrote: > > > > On 2007-01-15, Erin Spiceland <[EMAIL PROTECTED]> wrote: > > > > > I just got a new server and vim wasn't

Re: Upgrading or enabling features in vim

2007-01-15 Thread Erin Spiceland
On Mon, 2007-01-15 at 15:39 -0800, Gary Johnson wrote: > On 2007-01-15, Erin Spiceland <[EMAIL PROTECTED]> wrote: > > > On Mon, 2007-01-15 at 14:55 -0800, Gary Johnson wrote: > > > On 2007-01-15, Erin Spiceland <[EMAIL PROTECTED]> wrote: > > > > I just got a new server and vim wasn't installed. I

Re: Upgrading or enabling features in vim

2007-01-15 Thread Gary Johnson
On 2007-01-15, Erin Spiceland <[EMAIL PROTECTED]> wrote: > On Mon, 2007-01-15 at 14:55 -0800, Gary Johnson wrote: > > On 2007-01-15, Erin Spiceland <[EMAIL PROTECTED]> wrote: > > > I just got a new server and vim wasn't installed. I installed 7.0 from > > > scratch, but there are some problems wit

how to NOT save history

2007-01-15 Thread Luis A. Florit
Pals, How I avoid certain commands and/or substitutions NOT to be saved into the history list? For example, I have a sequence of VIM commands that executes on every email quote to properly format it, and I don't want these to appear in the registries and history. Thanks! L.

Re: Upgrading or enabling features in vim

2007-01-15 Thread Gary Johnson
On 2007-01-15, Erin Spiceland <[EMAIL PROTECTED]> wrote: > I just got a new server and vim wasn't installed. I installed 7.0 from > scratch, but there are some problems with missing features or features > not working: > > 1. syntax highlighting doesn't work. It is turned on in vimrc but I > haven'

vim turns xterm blinking cursor off

2007-01-15 Thread Craig Westwood
Hello, Before a vim session, my xterm prompt cursor blinks nicely :), as noted via the vt100 menu (ctrl-middleMouse-"Enable Blinking Cursor") - checked. As soon as vim in an xterm starts, the blinking stops. After exiting the edit session, prompt cursor blinking is off, confirmed by the vt100 me

Re: Upgrading or enabling features in vim

2007-01-15 Thread Evan Klitzke
On Mon, 2007-01-15 at 15:43 -0500, Erin Spiceland wrote: > I just got a new server and vim wasn't installed. I installed 7.0 from > scratch, but there are some problems with missing features or features > not working: Just as a reminder, if you use :version you can find out what options vim was co

Re: Upgrading or enabling features in vim

2007-01-15 Thread Tim Chase
1. syntax highlighting doesn't work. It is turned on in vimrc but I haven't checked anything else. 2. using the arrows on the keyboard in insert mode puts A, B, C, or D and newline into the file instead of moving up, down, left, or right. These two sound like your $TERM setting isn't getting pro

Upgrading or enabling features in vim

2007-01-15 Thread Erin Spiceland
I just got a new server and vim wasn't installed. I installed 7.0 from scratch, but there are some problems with missing features or features not working: 1. syntax highlighting doesn't work. It is turned on in vimrc but I haven't checked anything else. 2. using the arrows on the keyboard in inser

Re: latin1 vs utf8

2007-01-15 Thread Bram Moolenaar
DervishD wrote: > After that, I've set up this mappings to switch manually from one > encoding to other: > > noremap + :setlocal fenc=utf8 enc=utf8 > noremap - :setlocal fenc=latin1 enc=latin1 > > OK, this is not a perfect solution, and it's a bit crappy and can be > automated (fo

Re: C++ Syntax highlighting for Identifier, Statement

2007-01-15 Thread Dmitriy Yamkovoy
This might be possible using a tags file, which already gathers all the class, variable, function, etc names (and their locations). Maybe a command (or autocommand) to create syntax objects based on a tags file would do the trick? I don't know how to do this, but maybe someone else on the list c

Re: Mac Questions

2007-01-15 Thread Marc Wilson
On Mon, Jan 08, 2007 at 06:35:18PM +1100, Brett Calcott wrote: > I thought the same thing. But it does not appear to source my > .bash_profile or .bashrc. Why would it? Vim is not bash. The shell in which you run a console vim should have already sourced bash startup files as appropriate (see th

Re: /< and /> problem

2007-01-15 Thread Matthew K
I did have an odd mapping - that's what caused the problem. I was configuring VIM to swap the escape key with caps-lock and thats what caused the problem. I've deleted the line that maps "<" and ">" to escape, and used a XP program that swaps caps-lock with escape. Thanks, Matthew --- Tim Chase

Re: /< and /> problem

2007-01-15 Thread Tim Chase
Why are you typing : ? Unless I have misunderstood your notation here, search is simply: /\ Both work, and are slightly different: /\ just searches in vim. If all you're doing is searching, you're correct that this is likely the easier way to go. :/\/ is an ex search/po

Re: /< and /> problem

2007-01-15 Thread Matthew K
I tried the command without the ":" and still got the same response from Vim. I still can't use the \< and \> expressions. Thanks, Matthew --- Russell Bateman <[EMAIL PROTECTED]> wrote: > (Pardon, this may not have gone out in the correct > format.) > > Russell Bateman wrote: > > Why are you ty

Re: /< and /> problem

2007-01-15 Thread Tim Chase
When I try to search for a word with the following command :/\/ the vim program stops at the :/\< and replaces the < with a > and then errors: E486: Pattern not found. I haven't found anything on google that speaks to this problem. Can someone help me? sounds like you have a command-line

Re: /< and /> problem

2007-01-15 Thread Russell Bateman
(Pardon, this may not have gone out in the correct format.) Russell Bateman wrote: Why are you typing : ? Unless I have misunderstood your notation here, search is simply: /\ Russ Bateman Matthew Karas wrote: Hello, When I try to search for a word with the following command :/\/ the vi

/< and /> problem

2007-01-15 Thread Matthew Karas
Hello, When I try to search for a word with the following command :/\/ the vim program stops at the :/\< and replaces the < with a > and then errors: E486: Pattern not found. I haven't found anything on google that speaks to this problem. Can someone help me? ___

Re: latin1 vs utf8

2007-01-15 Thread DervishD
Hi Klaus :) * Klaus Ethgen <[EMAIL PROTECTED]> dixit: > I think that question was asked many time before but with differed > direction but maybe there is someone having a answer. (I found some for > the other direction not for mine.) I asked more or less the same a few days ago, you can

latin1 vs utf8

2007-01-15 Thread Klaus Ethgen
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hello, I think that question was asked many time before but with differed direction but maybe there is someone having a answer. (I found some for the other direction not for mine.) I have a latin1 setup and like to be able to read utf8 as well. So fa