Re: Can't use PIDA shortcuts when vim has focus?

2007-11-04 Thread sean f
On Nov 4, 4:53 am, "Ali Afshar" <[EMAIL PROTECTED]> wrote: > Hi, this appears to be window-manager specific. I am having the same > issue at the moment using Metacity, whereas I don't have it with other > window managers. > > Please confirm what window manager you are using. Yep - metacity :( -

press ENTER messages

2007-10-10 Thread sean f
When I am switching between buffers, or closing buffers, in PIDA+vim, I frequently get "Press ENTER or type command to continue" messages at the bottom of the vim window. I thought setting verbose=0 in vimrc might fix suppress the messages, but no luck. This only seems to happen to me in PIDA, a

embedded meld

2007-09-20 Thread sean f
Was researching some ideas for embedding meld in PIDA, and I came across this post from Ali on meld-list: http://www.mail-archive.com/[EMAIL PROTECTED]/msg00110.html What was the outcome here? I certainly don't see an embedded meld in PIDA... was there some sort of licensing issue? --~--~-

Filewatcher + gamin

2007-09-17 Thread sean f
I've installed gamin and enabled the filewatcher. I sort of expected this to give me some sort of indication of file modification status in the PIDA buffer list, but I don't see anything. What exactly does the filewatcher feature do? What should I be looking for? --~--~-~--~~---

Re: Using Meld and CVS

2007-09-17 Thread sean f
On Sep 14, 2:56 am, David <[EMAIL PROTECTED]> wrote: > Hi, > Right now nothing happens when I want to display the differences with > my CVS base or to check-in / out. Where do I configure that? I don't use CVS, but I've got my svn client configuration set to use meld to display diffs: http://pid

Small problem with PIDA wiki

2007-09-13 Thread sean f
The Trac logo at the top of http://pida.co.uk/trac/ links to http://example.org/ - just a little bit annoying, because I keep clicking it to get back to the top of the wiki :) --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

Re: planing the skeleton plugin (aka utilizing django/turbogear/somethingelse template scripts)

2007-09-12 Thread sean f
On 11 Sep, 15:19, RonnyPfannschmidt <[EMAIL PROTECTED]> wrote: > i startet to put some toughts into it - there are different "levels" > of generators, and the frameworks/toolkits support different of them > > werkzeug only utilizes basic application building, > django, turbogears and plone got com

Re: Using PIDA with Zope

2007-09-11 Thread sean f
On Sep 11, 3:52 am, Ali Afshar <[EMAIL PROTECTED]> wrote: > On Monday 10 September 2007 22:03:26 sean f wrote: > > > I've just written and published a tutorial on how to use PIDA to > > develop products for Zope and Plone, you can read it at: > >http://plone.o

Re: can vim detect if it is running in PIDA?

2007-09-10 Thread sean f
Thanks Ali - exactly what I needed.. Now I've got my vim-only .vimrc stuff wrapped in this: if !exists("PIDA_EMBEDDED") " your vim-only commands here endif perfect! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

Using PIDA with Zope

2007-09-10 Thread sean f
I've just written and published a tutorial on how to use PIDA to develop products for Zope and Plone, you can read it at: http://plone.org/documentation/tutorial/debugging-plone-products-with-pida Feedback welcome :) --~--~-~--~~~---~--~~ You received this messag

can vim detect if it is running in PIDA?

2007-09-06 Thread sean f
I'd like to add some conditions to my .vimrc to prevent disable certain configurations when vim is running inside of PIDA. Is this possible, and if so, could someone maybe provide a simple example? --~--~-~--~~~---~--~~ You received this message because you are su

How to stack plugin panels?

2007-09-06 Thread sean f
I'd like to rearrange the layout of some of the plugin panels, but I'm not sure how to do it. I know I can drag them around to top/right/bottom/left - but what I want to do is to have two plugins visible simultaneously on the left side of the screen, as shown in your Windows screenshot here: htt

Re: Debugger - how to set a breakpoint in code

2007-09-05 Thread sean f
Never mind, I worked it out :-) I just add the following... from pida.utils import rpdb2; rpdb2.start_embedded_debugger_interactive_password() ... where I want my code to break, then start Zope via my project's exec controller. I launch the debugger, give it a password. When Zope output prompt

Debugger - how to set a breakpoint in code

2007-09-05 Thread sean f
I'm trying to figure out how to use the debugger plugin to debug Zope applications. With pdb, I would insert "import pdb; pdb.set_trace()" where I want my code to stop and drop into pdb. I'd like to be able to use a similar technique to have the code stop and attach to the rpdb2 debugger plugin