FirstTimeInForever / gradle-run-gutter-icons

This plugin adds run gutter icons for the build.gradle.kts tasks declarations.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Gradle Run Gutter Icons

Build Version Downloads

This simple plugin adds run gutter icons for the build.gradle.kts tasks declarations. Then clicked, it executes declared gradle task just like Execute Gradle Task action.

Currently, it only supports these types of task declaration:

  • tasks.register(<taskName>)
  • tasks.create(<taskName>)
  • val task = tasks.register(<taskName>)
  • val task = tasks.create(<taskName>)
  • val task by tasks.registering(<taskName>)
  • val task by tasks.creating(<taskName>)

Plugin Screenshot

Installation

  • Using IDE built-in plugin system:

    Settings/Preferences > Plugins > Marketplace > Search for "Gradle Run Gutter Icons > Install Plugin

  • Manually:

    Download the latest release and install it manually using Settings/Preferences > Plugins > ⚙️ > Install plugin from disk...

Gradle Run Gutter Icons plugin is based on the IntelliJ Platform Plugin Template.

About

This plugin adds run gutter icons for the build.gradle.kts tasks declarations.

License:MIT License


Languages

Language:Kotlin 100.0%