Re: Silly Question

2007-04-06 Thread Silent1

"brendon" i lucked out, i just got errors :)


Re: bracket completion

2007-04-03 Thread Silent1

Just tried the plugin and it works great, the only issue i'm having is
typing '{'
results in this
'{|}' not
{
  |
}
where | is the cursor position. Is there any option to change this or
am i doing something wrong? Thanks
--Brendon

On 4/3/07, Karl Guertin <[EMAIL PROTECTED]> wrote:

On 3/31/07, Greg Fitzgerald <[EMAIL PROTECTED]> wrote:
> Anyone know of a way to achieve bracket completion?

I've been sitting on a plugin that does this for a month or so. The
main difference between my plugin and the rest of the options here is
that I do the completion without breaking history or repeat.

Freshly uploaded to vim.org:

http://www.vim.org/scripts/script.php?script_id=1849

This plugin was pared down from a larger script that included a set of
less reusable mappings, so let me know if there's a problem.



Re: Reannouncing vimplugin: A vim plugin for Eclipse

2007-04-01 Thread Silent1

Just a quick question about the overal goal of the project. Would vim
just become an editor inside eclipse? Or would we be able to still use
vim inside eclipse but still use code completion say from plugins like
zends php project for eclipse or phpeclipse or any of the languagle
specific plugins? Thanks
--Brendon

On 3/30/07, Sebastian Menge <[EMAIL PROTECTED]> wrote:

Hi all

After a long time of no activity we restarted the work on a small plugin
to embed vim into the Eclipse IDE.

See http://vimplugin.sf.net and http://sf.net/vimplugin for details.

If you are familiar with eclipse, there is an update site
http://vimplugin.sf.net/update with the latest build.

Microsoft users have to use the cygwin version of vim.

We also have a prototype of an eclipse-plugin that talks to a gvim that
acts as "netbeans" server (:help netbeans).

More detailed info on that can be found here:
http://vimplugin.svn.sourceforge.net/svnroot/vimplugin/branches/vimclient/doc/README

Both projects are standard eclipse projects that can be checked out
anonymously via subversion (you need subclipse then):

http://vimplugin.svn.sourceforge.net/svnroot/vimplugin/trunk/vimplugin
http://vimplugin.svn.sourceforge.net/svnroot/vimplugin/branches/vimclient

This time we'll keep an better eye on community building: So please try
it out and give some feedback. On http://sf.net/projects/vimplugin you
can find forums and of course mailinglists.

Best regards, Sebastian.




Re: [help?] ezmlm warning

2006-09-06 Thread Silent1

yeah i also get them, and it also happens on other lists i'm on too
(php user mail list).
--Brendon

On 9/6/06, Zdenek Sekera <[EMAIL PROTECTED]> wrote:

I got exactly the same message. No explanation,
such messages come occassionally, very annoying.

---Zdenek


> -Original Message-
> From: Max Dyckhoff [mailto:[EMAIL PROTECTED]
> Sent: 05 September 2006 17:48
> To: vim@vim.org
> Subject: [help?] ezmlm warning
>
> Has anyone else had this problem? Looking at the bounce
> message at the bottom shows that 131.107.1.8 (Microsoft's
> mail server) doesn't like 160.45.45.151 (is this the mailing
> list server?) because it is listed on spamcop (although a
> quick check of spamcop shows that isn't true). Anything I
> should be doing?
>
> Cheers,
>
> Max
>
> > -Original Message-
> > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
> > Sent: Tuesday, September 05, 2006 8:36 AM
> > To: Max Dyckhoff
> > Subject: ezmlm warning
> >
> > Hi! This is the ezmlm program. I'm managing the
> > vim@vim.org mailing list.
> >
> >
> > Messages to you from the vim mailing list seem to
> > have been bouncing. I've attached a copy of the first bounce
> > message I received.
> >
> > If this message bounces too, I will send you a probe. If the probe
> > bounces,
> > I will remove your address from the vim mailing list,
> > without further notice.
> >
> >
> > I've kept a list of which messages from the vim mailing list have
> > bounced from your address.
> >
> > Copies of these messages may be in the archive.
> > To retrieve a set of messages 123-145 (a maximum of 100 per
> request),
> > send an empty message to:
> ><[EMAIL PROTECTED]>
> >
> > To receive a subject and author list for the last 100 or so
> messages,
> > send an empty message to:
> ><[EMAIL PROTECTED]>
> >
> > Here are the message numbers:
> >
> >68464
> >...
> >68686
> >
> > --- Enclosed is a copy of the bounce message I received.
> >
> > Return-Path: <>
> > Received: (qmail 658 invoked for bounce); 24 Aug 2006 21:56:46 -
> > Date: 24 Aug 2006 21:56:46 -
> > From: [EMAIL PROTECTED]
> > To: [EMAIL PROTECTED]
> > Subject: failure notice
> >
> > Hi. This is the qmail-send program at foobar.math.fu-berlin.de.
> > I'm afraid I wasn't able to deliver your message to the following
> > addresses.
> > This is a permanent error; I've given up. Sorry it didn't work out.
> >
> > <[EMAIL PROTECTED]>:
> > 131.107.1.8 does not like recipient.
> > Remote host said: 550 5.7.1 Email rejected because
> 160.45.45.151 is listed
> > by bl.spamcop.net. Please see
> http://www.spamcop.net/bl.shtml for more
> > information.  If you still need assistance contact
> [EMAIL PROTECTED]
> > Giving up on 131.107.1.8.
>
>



PHP omni-completion, PHP objects

2006-09-04 Thread Silent1

Hi all,
with vim7's omni-completion how do you call/get functions/variables
relating to a specific class?

$object = new HTML_QuickForm();
$object->

And then after you type -> how do i call for completions only relating
to the HTML_QuickForm class? I've tried the patch for ctags for PHP5
but my results are the same, are there specific parameters to build
the tags file for vim so i can call for suggestions relating to a
specific class/object? I've been going into my pear/lib dir and
typing:
ctags -R
I've also tried
ctags -R --fields=+S
But every time after i type -> i will always just get everything in
the tags file including new class names. Is there a specific key combo
i must press to get suggestions relating to the class/object?

Also how can i build a tags file where functions will have parameters
in the preview window? It already does this for php functions but for
some reason pear libs and my code will always just be
function_name()
instead of
function_name($param1,$param2,$etc)

Lastly when you get the list of suggestions, what are the different
keys you can press to cancel the drop down (I've been pressing escape
but then I'm out of insert mode and the suggestion i was on has been
filled in my code). I remember vim's help had the list of keys but i
just can't seem to find it. Thanks in advance.


Re: vim rss feeds

2006-08-23 Thread Silent1

I have that rss feed on my google homepage and have noticed it hasn't
updated. The most recent script update on the rss feed was pastie on
7/31/06 and in every reader i've tried with that rss feed i get pastie
being the last updated script.


On 8/22/06, Donn Washburn <[EMAIL PROTECTED]> wrote:
> Silent1 wrote:
> > I'm not sure if the rss feed for vim scripts is the most up to date,
> > but this feed,
> > http://plasmasturm.org/feeds/vimscripts/ hasn't updated in a long
> > time, anyone else having this problem or know of a different one that
> > is up to date? Thanks
> >
> I assume you are using Linux because you are also a VIM user.
> What program would be used as a helper for reading the above vimscripts?
>
>
> --
> 73 de Donn Washburn
> 307 Savoy Street Email: " [EMAIL PROTECTED] "
> Sugar Land, TX 77478 LL# 1.281.242.3256
> Ham Callsign N5XWB   HAMs : " [EMAIL PROTECTED] "
> VoIP via Gizmo: bmw_87kbike / via Skype: n5xwbg
> BMW MOA #: 4146 - Ambassador
>" http://counter.li.org " #279316
>



vim rss feeds

2006-08-22 Thread Silent1

I'm not sure if the rss feed for vim scripts is the most up to date,
but this feed,
http://plasmasturm.org/feeds/vimscripts/ hasn't updated in a long
time, anyone else having this problem or know of a different one that
is up to date? Thanks


Re: Project and ftp

2006-07-07 Thread Silent1

just one more quick thing, is there a way for the files listed in the
project pane that are on ftp/etc to just list their name instead of
ftp://[EMAIL PROTECTED]/somefolder/somefile
to only list somefolder/somefile or just somefile
Thanks in advance.

On 7/6/06, Silent1 <[EMAIL PROTECTED]> wrote:

ah okay, thanks again for your help.

On 7/6/06, Tom Purl <[EMAIL PROTECTED]> wrote:
> I don't believe so.
>
> > is it possible for the project plugin to create the files/dir
> > recursively if i give the ftp info? I tried with \C but with no luck.
> > Thanks
> >
> > On 7/6/06, Tom Purl <[EMAIL PROTECTED]> wrote:
> >> my_servers=/home/someguy/project_folder CD=. {
> >>  ftp://servera.domain.com//home/someguy/file1.html
> >>  ftp://servera.domain.com//home/someguy/file2.html
> >>  ftp://serverb.domain.com//home/someotherguy/file3.html
> >> }
> >>
> >> Basically, you use the same syntax that you would use to open a file via
> >> FTP with the netrw plugin (:h netrw).
> >>
> >> Hope that helps!
> >>
> >> Tom Purl
> >>
> >>
> >
>
>



Re: Project and ftp

2006-07-06 Thread Silent1

ah okay, thanks again for your help.

On 7/6/06, Tom Purl <[EMAIL PROTECTED]> wrote:

I don't believe so.

> is it possible for the project plugin to create the files/dir
> recursively if i give the ftp info? I tried with \C but with no luck.
> Thanks
>
> On 7/6/06, Tom Purl <[EMAIL PROTECTED]> wrote:
>> my_servers=/home/someguy/project_folder CD=. {
>>  ftp://servera.domain.com//home/someguy/file1.html
>>  ftp://servera.domain.com//home/someguy/file2.html
>>  ftp://serverb.domain.com//home/someotherguy/file3.html
>> }
>>
>> Basically, you use the same syntax that you would use to open a file via
>> FTP with the netrw plugin (:h netrw).
>>
>> Hope that helps!
>>
>> Tom Purl
>>
>>
>




Re: Project and ftp

2006-07-06 Thread Silent1

is it possible for the project plugin to create the files/dir
recursively if i give the ftp info? I tried with \C but with no luck.
Thanks

On 7/6/06, Tom Purl <[EMAIL PROTECTED]> wrote:

my_servers=/home/someguy/project_folder CD=. {
 ftp://servera.domain.com//home/someguy/file1.html
 ftp://servera.domain.com//home/someguy/file2.html
 ftp://serverb.domain.com//home/someotherguy/file3.html
}

Basically, you use the same syntax that you would use to open a file via
FTP with the netrw plugin (:h netrw).

Hope that helps!

Tom Purl




Project and ftp

2006-07-06 Thread Silent1

I've read thru the documentation for the project script and it says it
can handle ftp but they do not provide an example. Will this allow me
to edit ftp files from the project plugin? Basically i'm hoping it can
provide the functionality as if this was a directory on my machine so
i can just select a file from the project pane, edit it, save and the
file will be uploaded. Thanks in advance.


Re: PHP fold html

2006-06-29 Thread Silent1

if i switch the foldmethod to marker all my functions/classes will
unfold. The reason i created that other fold syntax is to be able to
fold what ever i want inside syntax fold mehtod. Now i just need to be
able to do now is to be able to fold html inside the syntax
foldmethod. Thanks in advance.

On 6/28/06, Peter Hodge <[EMAIL PROTECTED]> wrote:

Hi,

You can achieve this by setting setting foldmethod=marker, which automatically
creates folds at all {{{ and }}} pairs.  See :help fold-marker for more
information.  Adding to the syntax file should not be necessary.

regards,
Peter




--- Silent1 <[EMAIL PROTECTED]> wrote:

> i added this to the default php syntax file so i can create folds with
> //{{{ //}}} anywhere in my php.
>
> syn regionphpParent   matchgroup=Delimiter start="//{{{" end="//}}}"
> contained [EMAIL PROTECTED],phpFoldHtmlInside transparent fold
>
> It works great but i would like to fold html sections of my php file
> as well, with the same syntax above. So something like this i would
> like to fold,
>
>  //{{{fold html
> ?>
> 
> 
> more html
> 
> 
>  //}}}
> ?>
>
> Thanks
>





The LOST Ninja blog: Exclusive clues, clips and gossip.
http://au.blogs.yahoo.com/lostninja




PHP fold html

2006-06-28 Thread Silent1

i added this to the default php syntax file so i can create folds with
//{{{ //}}} anywhere in my php.

syn region  phpParent   matchgroup=Delimiter start="//{{{" end="//}}}"
contained [EMAIL PROTECTED],phpFoldHtmlInside transparent fold

It works great but i would like to fold html sections of my php file
as well, with the same syntax above. So something like this i would
like to fold,




more html




Thanks


omni completion, calling different types

2006-06-12 Thread Silent1

I'm using the omni completion so far on my php scripts and i'm
wondering if there are ways i can call different sets of data with
different key strokes.

ctrl-x+ctrl+o will bring up everything and display everything and will
open up a preview window that has info if a function is called with
parameters. How do i get the menu that comes up to display the
parameters as well? They come up in the preview window just fine just
wondering if i can see them in the drop down menu.

Also, everytime i start omni completion with ctrl-x+ctrl+o does it
research the file again and display everything including the new stuff
i may have typed?

If so is there a quicker way to see functions with the parameters
without reloading the file? ctrl+n will bring up functions but will
not update the preview window.

Also is there a way that i can just call php functions with parameters
and not see functions/classes/variables in the file i'm editing? Also
the reverse say i would like to only see functions/classes/variables
in the current file or say just the variables?
Thanks


Minor issues folding, autocomplete, scroll wheel

2006-05-08 Thread Silent1

Hi all,
I'm just wondering if these minor annoyances for me can be fixed
either thru some setting or something else. BTW this vim 7.0 on winxp
sp2 machine

First is with folding while i'm editing a file and all folds are
closed and i'm going to create a new function inside my class. After i
type the "{" all folds below the cursor will open. If i type zC, all
folds will close including where i was editing. Is there a command
that it'll keep the class and function i'm editing open but close
everything else? Or is there a delay i can set so i can add the } to
close the fold so everything won't open?

Also I couldn't find the command to turn off current line
highlighting? After i type set cul i'd like to switch it off.

Moving around: For some reason using the scroll wheel to move up and
down is usually slow, especiall scrolling past closed folds. The Page
up and down keys are fast, just they scroll alittle to much. BTW this
is with both current line highlighting on or off.

Lastly, usually i'm using vim for php, and i'm trying to get the omni
completion working. In insert mode when i type ctrl+X ctrl+O it just
cuts the current line. Can i remap the keys to start the completion or
can i just call it thru command mode.

Thanks in advance.


Project and taglist share vertical split

2006-04-21 Thread Silent1
+---+--+
 |   | |
 |   | |
 |Project|  |
 |   | |
 |   | |
 |   |   edited file|
 +---+  |
 |   | |
 |   | |
 |Taglist|  |
 |   | |
 |   | |
 |   | |
+---+--+

I'm wondering if the two vim scripts project and taglist could share a
vertical split like above? Taglist has an option to work with
vtreeexplorer, but i could not see anything with the project script.
Thanks in advance.


vim7.0e beta tabs and buffers

2006-04-20 Thread Silent1
Hi all,
just tried out vim7.0e on my xp machine (at home and at work, although
i'm setting my my new mac mini at home). I read thru the :help
version7 and i was wondering how tabs work with buffers. I use
minibuffer explorer to show the different buffers per window, i was
wondering if you can have different buffers per tab and send buffers
from one tab to another?

Also with folding, can i only create folds with when foldmethod is set
to marker? I'm currently using the syntax method that folds pretty
much everything i need but i also have some large blocks of code that
are neither methods or classes.
Thanks in advance.