Re: [Pydev-code] Model/hyperlinking checkin
Brought to you by:
fabioz
From: Aleks T. <a...@to...> - 2004-04-16 18:36:52
|
Dana Moore wrote: > In addition, I have integrated Jython into the project (wrapping it as > a plugin). I was intending to use this as a way of working with the > native python introspection capability; > for example to be able to extend the potential completions for a > statement that starts out > ....sys. > and offer all the completions for 'sys.' > or all the normal potential completions for something defined in the > module being editted. > Integrating Jython was trivial, but I haven't checked it in as yet, > since there still seem to be some execution pathing problems in using > it. > I have been intending to do some pairwise skull-sweating on this with > Bill, but even though we are just down the hall from one another, we > haven't been able to hook up for more than 2 minutes at a time. > If we together can get this cracked on (say) Monday, then I will have > something to demo/check in shortly thereafter. > I am using the AST traverer now to get my document model, and that may > be the first thing we check in. We will shift to the PyDictionary > shortly though... first let's get a working autocompleter. I've been thinking of integrating Jython. It would definitely be a good thing. Lets chat about how you are doing it before you check in. PyDictionary is no more. Now it is the classes inside editor.model. I have utility functions to find function definitions for now, finding locals would be easy, they are already registered with Scope. Traversing AST was too hard/limiting for me. Aleks |