Category
IDE
Posts filed under IDE on Ivan Morgillo.
IDE / Programming
Run a IntelliJ/Android Studio configuration with a shortcut
If you are like me, you have a few “Run configurations” when you develop an app: Run the app Run the tests Run the static analysis Run the UI tests You can generally only run...
IDE / Programming
Rainbow Brackets – Android Studio / Intellij IDEA plugins
Rainbow Brackets is the IntelliJ IDEA / Android Studio plugin I use to color-match every parenthesis, brace, and bracket — install, configure, and customize.
IDE / Programming
IntelliJ IDEA / Android Studio Tricks: “Presentation Assistant” plugin
The Presentation Assistant plugin for IntelliJ IDEA / Android Studio shows your keyboard shortcuts on screen as you press them — perfect for pairing or demos.
IDE / Programming
IntelliJ IDEA / Android Studio Tricks: “Save Actions” plugin
The Save Actions plugin for IntelliJ IDEA / Android Studio runs code-quality fixes (formatting, imports, optimizations) every time you save a file.
Android / IDE
IntelliJ IDEA / Android Studio Tricks: Surround With
IntelliJ IDEA's Surround With wraps selected code in try/catch, if/else, or Kotlin-specific snippets — Mac (⌥⌘T) and Windows (Ctrl+Alt+T) shortcuts.
IDE / Kotlin
IntelliJ IDEA / Android Studio Tricks: Live Templates
How to use Live Templates in IntelliJ IDEA / Android Studio — the keyboard expansions that turn `foreach` into a full loop and `logd` into Android's Log.d.
IDE / Kotlin
My IntelliJ Plugin Collection – Kotlin Fill class
Kotlin Fill Class is an IntelliJ / Android Studio plugin that auto-fills data class constructor arguments — stop typing the same parameters by hand.