Disable spell checking on IntelliJ IDEA
Follow : File >> Settings >> Editor >> Inspections >> Proofreading >> Typo -> Uncheck the options that you want to disable. Source for more details – Spellchecking with intelliJ
Follow : File >> Settings >> Editor >> Inspections >> Proofreading >> Typo -> Uncheck the options that you want to disable. Source for more details – Spellchecking with intelliJ
Esc usually brings the focus back to the editor.
Mark your build folder as excluded: File > Project Structure > Modules > Sources > Mark as Excluded (red icon) You can also just right click on your folder and select Mark Directory As > Excluded. Excluded folders (shown as rootExcluded) are ones that IntelliJ IDEA “partially ignores”. Very limited coding assistance is provided for … Read more
Yes, enable Use “CamelHumps” words in Settings | Editor | General | Smart Keys.
It’s as simple as Ctrl + mouse wheel. If this doesn’t work for you, enable File → Settings → Editor → General → (checked) Change font size (Zoom) with Ctrl+Mouse Wheel.
You may take a look at intellij code folding shortcuts. For Windows/Linux do: Ctrl+Shift+- For mac use Command+Shift+- To unfold again do Ctrl+Shift++ or Command+Shift++ respectivley. To unfold only a single method on Windows, use Ctrl+Alt+Plus.
These are some of my most used keyboard short cuts Syntax aware selection in the editor selects a word at the caret and then selects expanding areas of the source code. For example, it may select a method name, then the expression that calls this method, then the whole statement, then the containing block, etc.: … Read more
In IntelliJ 2016 and newer you can change this setting from the Help menu, Edit Custom Properties (as commented by @eggplantbr). On older versions, there’s no GUI to do it. But you can change it if you edit the IntelliJ IDEA Platform Properties file: #——————————————————————— # Maximum file size (kilobytes) IDE should provide code assistance … Read more
Find in Path: Edit > Find > Find in Path Ctrl + Shift + F Documentation: Find the search string in a project.
Ctrl + Shift + U In the future try typing: Ctrl + Shift + A and look for any actions you like. Here: Toggle Case. Or ⌘ Command + Shift + U if you are using Mac OSX.