JulianEberius / SublimePythonIDE

ST3 only: A rewrite of SublimeRope for ST3, uses the Rope library to add python completions and refactoring to ST3
GNU General Public License v2.0
267 stars 38 forks source link

Add autocompletion for ancestors methods #71

Open mandx opened 9 years ago

mandx commented 9 years ago

Most of the time, especially for webdev work, you are defining a new subclass of an abstract class provided by your framework, and most of the time it involves overriding its ancestors' methods. Is really convenient if SublimePythonIDE could also autocomplete all methods from all the ancestors of the current class I'm writing, right after the def keyword. The thing is this was already possible before switching to Jedi autocompletions, it just had the small annoyance that it autocompleted the name as a method call, that is, it inserted the parens and all arguments names when hitting Enter.

Can this be accomplished with the Jedi autocompletions?