Re: introducing vmail

2010-12-15 Thread A. S. Budden
On 14 December 2010 19:49, Daniel Choi wrote: > Today I'm releasing a new open source project which I've been working > on over the last two weeks, but which I've been daydreaming about for > over a year. > > It's called vmail. It's a Vim client for Gmail. It's a hybrid > Ruby/VimScript applicatio

Saving/reusing (sub)patterns

2010-12-15 Thread BPJ
Is it possible in vimscript to save and reuse a (complex) (sub)pattern similar te Perl's qr// ? As usual I seem unable to find the right help section because of not knowing the right search term... /bpj -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply b

Re: Change plugin owner on vim online?

2010-12-15 Thread Maxim Kim
On Wednesday, December 15, 2010 10:32:06 AM UTC+3, H wrote: > > Hi, > Is it possible to change plugin owner on vim online? > Thanks. I don't think so. I would love to change type of my plugin from ftplugin to utility myself but there is no way to do. Unless you ask Bram I believe. -- You rec

Re: introducing vmail

2010-12-15 Thread Stephan Weller
Hello Daniel, > It's called vmail. It's a Vim client for Gmail. It's a hybrid > Ruby/VimScript application. actually I am also quite interested about writing Mails in vim (seeing that this *other* editor has it ;) ). I am not particularly fond of Google though. I think at least in part you are us

Re: folding refused, set filetype=c helps, why?

2010-12-15 Thread fka...@googlemail.com
> You say it "basically" contains the text given. Does something like > this also show up? > > " Only do this when not done yet for this buffer > if exists("b:did_ftplugin") >   finish > endif Yes, in .vim/ftplugin.vim, however, after removing, no change. > As a side note, are you sure you want "

Re: Saving/reusing (sub)patterns

2010-12-15 Thread Tim Chase
Is it possible in vimscript to save and reuse a (complex) (sub)pattern similar te Perl's qr// ? While I don't know what Perl's "qr//" does (I'm more of a Python guy), you can certainly save complex patterns and reuse them: Save something recently searched: /complex_pattern_1 :let cp1=@/

Re: introducing vmail

2010-12-15 Thread Daniel Choi
Thanks for the suggestion. I look forward to making a Windows compatible release too. I hope some Window developers can help me with this. On Dec 15, 4:06 am, "A. S. Budden" wrote: > On 14 December 2010 19:49, Daniel Choi wrote: > > > Today I'm releasing a new open source project which I've bee

Re: introducing vmail

2010-12-15 Thread Daniel Choi
That's a very good idea. I'll put this on the to-do list. On Dec 15, 8:01 am, Stephan Weller wrote: > Hello Daniel, > > > It's called vmail. It's a Vim client for Gmail. It's a hybrid > > Ruby/VimScript application. > > actually I am also quite interested about writing Mails in vim (seeing that

Re: introducing vmail

2010-12-15 Thread Karol Samborski
Hello Daniel, I've just installed vmail and it's great! But one thing is annoying, it cannot be called from (g)vim directly (or I miss something). Best, Karol -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are replying to. For more

Re: introducing vmail

2010-12-15 Thread Chris Jones
On Tue, Dec 14, 2010 at 02:49:01PM EST, Daniel Choi wrote: > Today I'm releasing a new open source project which I've been working > on over the last two weeks, but which I've been daydreaming about for > over a year. > > It's called vmail. It's a Vim client for Gmail. It's a hybrid > Ruby/VimScr

Re: Saving/reusing (sub)patterns

2010-12-15 Thread ZyX
Reply to message «Saving/reusing (sub)patterns», sent 15:29:09 15 December 2010, Wednesday by BPJ: Vim patterns are normal strings. I do not know any way to save a compiled version, but you can use variables to construct a pattern. Here are some pieces of code from my YAML syntax file: ===

Re: introducing vmail

2010-12-15 Thread Daniel Choi
You're right, there is no way to call it from vim directly yet, but I'll make sure you can in a future release. Thank you for suggesting that. On Dec 15, 9:50 am, Karol Samborski wrote: > Hello Daniel, > > I've just installed vmail and it's great! But one thing is annoying, > it cannot be called

Windows and accents

2010-12-15 Thread Somelauw
I am using gvim7.3 on windows 7. My keyboard is set to US-International My language is set to dutch. My encoding is set to utf-8. When typing accents like ' and ", most programs will wait for the next keypress to determine the character I want to type. When I enter (accent)(space) it is supposed t

cygwin startup time

2010-12-15 Thread rameo
Every time I filter a command through cygwin, the cygwin cmd window has to startup. Startup takes env. 20-30 seconds. Then after the lines in Vim has been filtered, the cygwin window immediately closes again. Launching a next command through cygwin takes again 20-30 seconds startup time. Is there

syn match works but not syn region?

2010-12-15 Thread AK
In vim7.3, syn region doesn't seem to work for me even though syn match works fine: syn region hl1 start=/(/ end=/)/ hi def hl1 guifg=#57a guibg=#333 (test) is not highlighted at all. -ak -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text

Re: cygwin startup time

2010-12-15 Thread Shawn H Corey
On 10-12-15 12:44 PM, rameo wrote: Is there a way to avoid this startup time and take the cygwin window active? Have you tried running ViM from a cygwin window? It should use the same window for the filters. -- Just my 0.0002 million dollars worth, Shawn Confusion is the first step

Syntax file for vBulletin

2010-12-15 Thread Shawn H Corey
Does anyone have or know where I can get a syntax file for vBulletin? I tried to Google it but I get too many "Powered by vBulletin" links. Any help would be appreciated. -- Just my 0.0002 million dollars worth, Shawn Confusion is the first step of understanding. Programming is as mu

Re: cygwin startup time

2010-12-15 Thread rameo
On Dec 15, 6:47 pm, Shawn H Corey wrote: > On 10-12-15 12:44 PM, rameo wrote: > > > Is there a way to avoid this startup time and take the cygwin window > > active? > > Have you tried running ViM from a cygwin window?  It should use the same > window for the filters. > > -- > Just my 0.0002 mi

Re: introducing vmail

2010-12-15 Thread Thomas Wienecke
On Wed, Dec 15, 2010 at 05:33 PM, Chris Jones wrote: > On Tue, Dec 14, 2010 at 02:49:01PM EST, Daniel Choi wrote: > >> Today I'm releasing a new open source project which I've been working >> on over the last two weeks, but which I've been daydreaming about for >> over a year. >> >> It's called

Re: introducing vmail

2010-12-15 Thread vicky b
On Thu, Dec 16, 2010 at 3:30 AM, Thomas Wienecke wrote: > On Wed, Dec 15, 2010 at 05:33 PM, Chris Jones wrote: > > > On Tue, Dec 14, 2010 at 02:49:01PM EST, Daniel Choi wrote: > > > >> Today I'm releasing a new open source project which I've been working > >> on over the last two weeks, but which

Re: Windows and accents

2010-12-15 Thread Alessandro Antonello
> I am using gvim7.3 on windows 7. > My keyboard is set to US-International > My language is set to dutch. > My encoding is set to utf-8. > > When typing accents like ' and ", most programs will wait for the next > keypress to determine the character I want to type. > When I enter (accent)(space) i

Re: cygwin startup time

2010-12-15 Thread Pan Shi Zhu
On Thu, Dec 16, 2010 at 1:44 AM, rameo wrote: > Every time I filter a command through cygwin, the cygwin cmd window > has to startup. > Startup takes env. 20-30 seconds. On my computer start cygwin bash itself takes 20-30 seconds, so it seems more like a cygwin problem than vim problem. A better