DamnWidget / anaconda

Anaconda turns your Sublime Text 3 in a full featured Python development IDE including autocompletion, code linting, IDE features, autopep8 formating, McCabe complexity checker Vagrant and Docker support for Sublime Text 3 using Jedi, PyFlakes, pep8, MyPy, PyLint, pep257 and McCabe that will never freeze your Sublime Text 3
http://damnwidget.github.io/anaconda/
GNU General Public License v3.0
2.21k stars 260 forks source link

Implement Goto Next / Previous Method #496

Open dufferzafar opened 8 years ago

dufferzafar commented 8 years ago

PyCharm has a pair of hotkeys for Goto Next / Previous Methods. (Alt + Up / Down for me)

It'd be nice to have these in Sublime too.

I'm not really sure if this will be the correct plugin to add the functionality to, but let me know if you feel otherwise.

I'm also pretty familiar with Python (not with anaconda's source though) so would be happy to implement this feature myself - just give me some hints as to which file etc. will I need to start with.

Thanks for an amazing plugin, btw!

DamnWidget commented 8 years ago

What you mean with Goto Next/Previous Method? To iterate over the methods of a class definition?

dufferzafar commented 8 years ago

Yeah. Exactly that!

DamnWidget commented 8 years ago

If you think you can implement it, go on, it could be added in v2.0.0. you can take a look at the developer documentation to make a general idea about how the package code is structured and how it works