Re: Sudden problem with: exe set listchars=tab:\xbb\xb7,trail:\xb7

2006-07-16 Thread Yakov Lerner
On 7/16/06, A.J.Mechelynck [EMAIL PROTECTED] wrote: Yakov Lerner wrote: On 7/14/06, James Vega [EMAIL PROTECTED] wrote: On Fri, Jul 14, 2006 at 02:29:49AM +0300, Yakov Lerner wrote: I always had this line in my vimrc: exe set listchars=tab:\xbb\xb7,trail:\xb7 (It is equivalent to

Re: Sudden problem with: exe set listchars=tab:\xbb\xb7,trail:\xb7

2006-07-16 Thread A.J.Mechelynck
Yakov Lerner wrote: On 7/16/06, A.J.Mechelynck [EMAIL PROTECTED] wrote: Yakov Lerner wrote: On 7/14/06, James Vega [EMAIL PROTECTED] wrote: On Fri, Jul 14, 2006 at 02:29:49AM +0300, Yakov Lerner wrote: I always had this line in my vimrc: exe set listchars=tab:\xbb\xb7,trail:\xb7

Re: Motions in visual(line|block)

2006-07-16 Thread A.J.Mechelynck
Scott LaBounty wrote: Stewart, It looked like it was supposed to do something like that, but nothing seemed to happen with my Ruby file. I'll give it a shot in a C++ file and see what happens there. I still can't figure out what the a is doing though. Scott [...] The a is the English

Re: Motions in visual(line|block)

2006-07-16 Thread A.J.Mechelynck
Matthew Winn wrote: On Fri, Jul 14, 2006 at 06:48:57AM -0700, Scott LaBounty wrote: OK, I'll bite. What does =a{ do? The = is a format, and the { moves to the start of a class (at least that's what is does in the ruby file I tested this on). So, what's the a do in this command? a{ selects

Re: perlcomplete.vim -- anyone working on this?

2006-07-16 Thread Vigil
I put 'set iskeyword+=_' (I've tried numerous quoting around the underscore) but ':set iskeyword?' keeps saying iskeyword=a-z,A-Z,48-57,:,/,.. I just can't get the underscore into iskeyword. What's the command to see where a setting was last defined? On Wed, 12 Jul 2006, Hakim Cassimally

Re: perlcomplete.vim -- anyone working on this?

2006-07-16 Thread Peter Hodge
Hello, I do believe that if you 'set verbose=2' and then 'set isk?' vim will tell you where it was last set. I was having the same problem Saturday night when the ftplugin/php.vim was adding '$' to isk. I found that adding set isk-=$ to ~/.vim/ftplugin/php.vim did *not* work, but adding it to

Re: perlcomplete.vim -- anyone working on this?

2006-07-16 Thread Vigil
Oh. Grr, I hate it when plugins go changing the absolute value of your settings. I had a perl_doc.vim ftplugin that was setlocal iskeyword=a-z,A-Z,48-57,:,/,.ing, which must have been being sourced after perl.vim. Thanks, Peter. On Mon, 17 Jul 2006, Peter Hodge wrote: I do believe that if

Website Sign-up

2006-07-16 Thread Vigil
I hate sites that have the ability to log in but don't tell you why, so: why should I register on vim.org? -- .

Re: Website Sign-up

2006-07-16 Thread A.J.Mechelynck
Vigil wrote: I hate sites that have the ability to log in but don't tell you why, so: why should I register on vim.org? What do you mean by register on vim.org ? I see three possible meanings of the expression: - subscribing to the vim -at- vim.org mailing list: you already did. It

Shell commands and the more-prompt

2006-07-16 Thread justin constantino
I'm trying to write a plugin that runs a few shell commands. I want the user to be able to see the output of the commands, but if it takes up more than a screenful, there doesn't seem to be any way to see the part that goes off screen. I looked for a way to make Vim use the more-prompt for the

Re: perlcomplete.vim -- anyone working on this?

2006-07-16 Thread Peter Hodge
It may be worthwhile e-mailing the author to let them know that their modification of the iskeyword is not ideal. After all, ftplugin scripts *should* be setting iskeyword to something useful, but if it is not done properly it can cause major hastles. regards, Peter --- Vigil [EMAIL