I am searching for a Python IDE with visual studio features. After going through similar questions and reading reviews, I hardly see the following two features mentioned:
- goto definition - e.g. go from the place where a method is called to its definition (perhaps the class is in another module).
- find all references - something like "git grep method_name(" being done interactively inside the IDE.
Coding is so painful without them. Have you come across any python IDE with the above two features?
of course, the IDE need to have the essential features:
- code autocompletion
- integrated debugging
- basic IDE functions like syntax highlighting, error highlighting, smart indentation, bracket matching, etc.