Re: PySide / PyQt autocompletion in IDEs

2011-12-31 Thread Fabio Zadrozny
On Thu, Dec 29, 2011 at 6:22 PM, Merwin wrote: > Hi, > > I would like to work with PyQt / PySide, but there is a small problem : > methods arguments are not completed by IDE's autocompletion. > > When, typing "PySide.", I correctly get the module's att

PySide / PyQt autocompletion in IDEs

2011-12-29 Thread Merwin
Hi, I would like to work with PyQt / PySide, but there is a small problem : methods arguments are not completed by IDE's autocompletion. When, typing "PySide.", I correctly get the module's attributes, but when I want to see what arguments are expected to a constructor

Re: is there an autocompletion like Dasher ?

2011-05-07 Thread Stef Mientki
On 08-05-2011 01:28, Dan Stromberg wrote: > > On Sat, May 7, 2011 at 3:40 PM, Stef Mientki <mailto:stef.mien...@gmail.com>> wrote: > > hello, > > I would like to have a autocompletion / help /snippet system like Dasher : > > http://www.inference.phy

Re: is there an autocompletion like Dasher ?

2011-05-07 Thread Dan Stromberg
On Sat, May 7, 2011 at 3:40 PM, Stef Mientki wrote: > hello, > > I would like to have a autocompletion / help /snippet system like Dasher : > > http://www.inference.phy.cam.ac.uk/dasher/ > > anyone seen such a component ? > Ummm... For what OS and what hardware? Do you

is there an autocompletion like Dasher ?

2011-05-07 Thread Stef Mientki
hello, I would like to have a autocompletion / help /snippet system like Dasher : http://www.inference.phy.cam.ac.uk/dasher/ anyone seen such a component ? thanks, Stef -- http://mail.python.org/mailman/listinfo/python-list

Re: editor with autocompletion

2009-12-05 Thread Someone Something
If you're actually going to release this, you shouldn't bundle it with a preexisting text editor (IMHO) in case it goes out of development and then you'll end up like DSL (damn small linux) did. In other words either you get a text editor that's basically never going out of development (emacs, not

Re: editor with autocompletion

2009-12-05 Thread Fabio Zadrozny
On Sat, Dec 5, 2009 at 5:19 AM, Siva B wrote: > Hi All, > Thanks for your reply. > > What I want is An Editor which can support Dynamic Languages with > Autocomplete. > > I have my own language with some file extension (for ex: *.fs ) > I can add few keywords to editor, it should support autocompl

Re: editor with autocompletion

2009-12-04 Thread Siva B
; I there any such tool in Python ?(not only in python any other) > > I want it for my new lang > > IDLE, the Integrated Development Environment included with your Python > installation nowadays has autocompletion (I just check with the one > included in Python 2.6). > > --

Re: editor with autocompletion

2009-12-04 Thread Gerhard Häring
ation nowadays has autocompletion (I just check with the one included in Python 2.6). -- Gerhard -- http://mail.python.org/mailman/listinfo/python-list

Re: editor with autocompletion

2009-12-04 Thread mynthon
On 4 Gru, 13:37, Tim Chase wrote: > > So I want an editor with auto complete. > > I there any such tool in Python ?(not only in python any other) > > I want it for my new lang > > vim?  emacs?  or do you want the editor to be written in Python? > > -tkc Try ActiveState Komodo (or free version: Ko

Re: editor with autocompletion

2009-12-04 Thread Tim Chase
So I want an editor with auto complete. I there any such tool in Python ?(not only in python any other) I want it for my new lang vim? emacs? or do you want the editor to be written in Python? -tkc -- http://mail.python.org/mailman/listinfo/python-list

editor with autocompletion

2009-12-03 Thread Siva B
Hi friends, I am writing a new language. So I want an editor with auto complete. I there any such tool in Python ?(not only in python any other) I want it for my new lang help me Thanks siva -- http://mail.python.org/mailman/listinfo/python-list

Re: Autocompletion

2009-04-09 Thread Sorin Schwimmer
tain words (collected in a, let's say, vocabulary) need this feature. Ideally, I'd like to start the autocompletion feature when the widget gets the focus, and stop it when focus is lost. Moreover, when starting, a numeric parameter should dictate that the autocompletion will kick in after wr

Re: Autocompletion

2009-04-09 Thread Tim Chase
Does anybody knows about a module to assist with text autocompletion for a given dictionary? On machines with the GNU readline library available, Python provides the "readline" module which should allow for auto-completion. -tkc -- http://mail.python.org/mailman/listinfo/python-list

Autocompletion

2009-04-09 Thread Sorin Schwimmer
Hi All, Does anybody knows about a module to assist with text autocompletion for a given dictionary? Thanks, SxN __ Ask a question on any topic and get answers from real people. Go to Yahoo! Answers and share what you

Re: Autocompletion and Interactive Tables in a Python IDE

2008-07-27 Thread Fabio Zadrozny
> a) Intellisense (tells you what classes/methods are available and what > variables go into a function) > b) Code Completion (guesses your code after four letters) > c) Data-Orientation; multiple data sessions can be open, data can be > viewed easily > > Python's IDLE has only half of the first of

Re: Autocompletion and Interactive Tables in a Python IDE

2008-07-25 Thread Colin J. Williams
Anthony wrote: Hi, I'm a FoxPro programmer, but I want to learn python before it's too late. I do a lot of statistical programming, so I import SPSS into python. In my opinion, the best features of Visual FoxPro 9.0 were: a) Intellisense (tells you what classes/methods are available and what va

Re: Autocompletion and Interactive Tables in a Python IDE

2008-07-24 Thread Aspersieman
> > On Jul 24, 4:10 am, Aspersieman <[EMAIL PROTECTED]> wrote: > >> Anthony wrote: >> >>> Hi, I'm a FoxPro programmer, but I want to learn python before it's >>> too late. I do a lot of statistical programming, so I import SPSS >>> into python. In my opinion, the best features of Visual

Re: Autocompletion and Interactive Tables in a Python IDE

2008-07-24 Thread Anthony
FoxPro is data-oriented, which means that at any time you have any number of data sets open in the workspace and browse them immediately by running one line of code in the command window. It's a really important feature in terms of efficiency; I don't want to have to move back and forth between SP

Re: Autocompletion and Interactive Tables in a Python IDE

2008-07-24 Thread arsyed
On Wed, Jul 23, 2008 at 5:28 PM, Anthony <[EMAIL PROTECTED]> wrote: > Hi, I'm a FoxPro programmer, but I want to learn python before it's > too late. I do a lot of statistical programming, so I import SPSS > into python. In my opinion, the best features of Visual FoxPro 9.0 > were: > a) Intellise

Re: Autocompletion and Interactive Tables in a Python IDE

2008-07-24 Thread arsyed
On Wed, Jul 23, 2008 at 5:28 PM, Anthony <[EMAIL PROTECTED]> wrote: > Hi, I'm a FoxPro programmer, but I want to learn python before it's > too late. I do a lot of statistical programming, so I import SPSS > into python. In my opinion, the best features of Visual FoxPro 9.0 > were: > a) Intellise

Re: Autocompletion and Interactive Tables in a Python IDE

2008-07-24 Thread Aspersieman
Anthony wrote: > Hi, I'm a FoxPro programmer, but I want to learn python before it's > too late. I do a lot of statistical programming, so I import SPSS > into python. In my opinion, the best features of Visual FoxPro 9.0 > were: > a) Intellisense (tells you what classes/methods are available and

Re: Autocompletion and Interactive Tables in a Python IDE

2008-07-23 Thread s0suk3
On Jul 23, 4:28 pm, Anthony <[EMAIL PROTECTED]> wrote: > Hi, I'm a FoxPro programmer, but I want to learn python before it's > too late. I do a lot of statistical programming, so I import SPSS > into python. In my opinion, the best features of Visual FoxPro 9.0 > were: > a) Intellisense (tells yo

Autocompletion and Interactive Tables in a Python IDE

2008-07-23 Thread Anthony
Hi, I'm a FoxPro programmer, but I want to learn python before it's too late. I do a lot of statistical programming, so I import SPSS into python. In my opinion, the best features of Visual FoxPro 9.0 were: a) Intellisense (tells you what classes/methods are available and what variables go into a

Re: Autocompletion in interactive mode doesn't work in 2.5.1

2007-06-12 Thread Papalagi Pakeha
On 6/12/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > On Jun 12, 9:36 am, "Papalagi Pakeha" wrote: > > Hi all, > > > > How can I turn on autocompletion when I push in python 2.5.1 > > interactive mode? E.g. to give me a list of all methods and

Re: Autocompletion in interactive mode doesn't work in 2.5.1

2007-06-12 Thread jitudon
On Jun 12, 9:36 am, "Papalagi Pakeha" <[EMAIL PROTECTED]> wrote: > Hi all, > > How can I turn on autocompletion when I push in python 2.5.1 > interactive mode? E.g. to give me a list of all methods and attributes > of a given object. > > It works great on my

Autocompletion in interactive mode doesn't work in 2.5.1

2007-06-11 Thread Papalagi Pakeha
Hi all, How can I turn on autocompletion when I push in python 2.5.1 interactive mode? E.g. to give me a list of all methods and attributes of a given object. It works great on my Linux / Ubuntu 7.04 installation but doesn't work on Solaris 10 (x86). I have libreadline.so and libncurs