SublimePythonIDE icon indicating copy to clipboard operation
SublimePythonIDE copied to clipboard

Add autocompletion for ancestors methods

Open mandx opened this issue 9 years ago • 0 comments

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?

mandx avatar Aug 26 '14 16:08 mandx