Home > Article > Development Tools > How does sublime implement support for Gradle?
The following tutorial column of sublime will introduce to you how to add support for Gradle configuration files in sublime text. I hope it will be helpful to friends in need!
Add support for Gradle configuration files in sublime text
When I use Sublime to open a build.gradle file, it opens in plain text by default:
Download from this link https://github.com/koizuss/sublime-gradle
After decompressing, place it under the Data\Packages folder of sublime text :
to get Gradle syntax highlighting:
task hello { doLast { println 'Hello world!' } }
The above is the detailed content of How does sublime implement support for Gradle?. For more information, please follow other related articles on the PHP Chinese website!