3 Apr 2003 00:23
Auto-completion and Call-tips in Python
Ray Drew <ray.drew <at> dsl.pipex.com>
2003-04-02 22:23:36 GMT
2003-04-02 22:23:36 GMT
Hi, I've just discovered SciTE and wondered if anyone could suggest the best way to use auto-completion and call-tips in python. I've created a python.api file with gen_python_api.py but it doesn't seem that practical and I'm wondering if I'm missing something. For example, the python.api file has entries for string functions but to get the auto-completion and call-tips I have to include the full python path in my code: import string string. then gives me auto-completion choices and call-tips. If I code: from string import capitalize auto-completion doesn't work (I can see why). Also methods don't appear to be supported at all. Class definitions show up in the api file as in: dr.model.sptloadr.FinalSpotLoader(conn, cmpno, fname) but again I have to use the full path in my code to make use of it, if I do: from dr.model.sptloadr import FinalSpotLoader(Continue reading)
RSS Feed