Intellij Idea Cheat Sheet



IntelliJ IDEA Community Edition is the open-source version ofIntelliJ IDEA,an IDE (Integrated Development Environment)for Java, Groovy, and other programming languages such as Scalaor Clojure. It is made by JetBrains, maker of PyCharm Python IDE.

  1. Idea Cheat Sheet
  2. Intellij Idea Ide

Before you start¶

Cheat

You should have both Miniconda and IntelliJ installed and working.

DEFAULT KEYMAP ReSharper 2.x/IntelliJ IDEA scheme Improve Show available quick-fixes and context actions Alt + Enter Ctrl + Shift + Alt + A View type hierarchy Ctrl + Alt H Go to next highlight (error, warning or suggestion) F12 Go to previous highlight. Yet, neither of these is on the (default) IDEA right-click menu. So, I either need to move my mouse to the menu or dig out the keyboard shortcut cheat-sheet. My question is then, is there a way I configure what is on the right-click menu when it's in a code file? IntelliJ IDEA automatically suggests a predefined keymap based on your environment. Make sure that it matches the OS you are using or select the one that matches shortcuts from another IDE or editor you are used to (for example, Eclipse or NetBeans). IntelliJ IDEA sets itself apart by offering incredibly advanced ways to find objects and files within large projects. Mastering the act of finding what you need is key to faster development. The navigation bar is a useful alternative to the Project pane. This horizontal bar.

Intellij idea hotkeys cheat sheetIntellij idea cheat sheet macIntellij Idea Cheat SheetIntellij idea cheat sheet pdf

Set up IntelliJ using Miniconda¶

Find location of Miniconda Python executable:

Idea Cheat Sheet

The system responds with your path to Python. You need this in the next step.

Within IntelliJ¶

  1. Go to File>ProjectStructure>PlatformSettings>SDKs

  2. Click the Add (+) icon

  3. Choose PythonSDK

  4. Enter location of Miniconda Python executable /Users/UserName/miniconda3/bin/python

    Note

    Substitute your actual path to Miniconda that you found in the previousstep.

  5. Go to File>ProjectSettings>Project>ProjectSDK

  6. Select from the drop-down: Python 3.6.0 (~/miniconda3/bin/python…)

  7. Go to Run>Debug

  8. Click the Add (+) icon

  9. Select Python and then enter the following:

    Name: MyProject

    Script: /Users/UserName/MyProject/my_file.py

    Use Specified Interpreter: Python 3.6.0 (~/miniconda3/bin/python…)

Intellij Idea Ide

For more information, see the IntelliJ IDEA documentation.