Hide external modules when importing a module (e.g. regarding code-completion)

I had the same problem, and solved it by adding a leading underscore to all my imports. It doesn’t look brilliant, but it achieves what you’re after. from __future__ import division as _division import numpy as _np import pandas as _pd Only the stuff that starts without an underscore is imported when you import the … Read more

IDEA: “Assign statement to new local variable”?

Refactor | Introduce Variable (Ctrl+Alt+V on Windows). Note that you don’t need to select the text if it’s the only text in the current line. Then you can change the variable name in-line just like you’ve described and press Enter to complete editing. Another way is to use the Postfix Completion: Type .var (or just … Read more

Xcode project CMD-Click on symbol to ‘Jump to Definition’ does not work

Try this: Open the organizer. Close your project in Xcode (leaving Xcode and the organizer running). In the organizer, in projects, click on the Delete button next to Derived Data. Quit Xcode. Find your Xcode project via the finder. Rightclick and “Show Package Contents”. Delete project.xcworkspace and xcuserdata folder. Open up Xcode again and see … Read more