aboutsummaryrefslogtreecommitdiffhomepage
path: root/site/blog
diff options
context:
space:
mode:
authorGravatar Googler <noreply@google.com>2016-10-20 00:59:40 +0000
committerGravatar Philipp Wollermann <philwo@google.com>2016-10-21 08:20:36 +0000
commite1152a204b6660c4951a44bf7da477a311dbbea5 (patch)
tree68cc52aba514f2f1568c15c695a614b15768a250 /site/blog
parent9ad28cd6001feb5dd8afda5878ebacfe25efe254 (diff)
Bazel IntelliJ plugin blog post.
-- MOS_MIGRATED_REVID=136666421
Diffstat (limited to 'site/blog')
-rw-r--r--site/blog/_posts/2016-10-20-intellij-support.md30
1 files changed, 30 insertions, 0 deletions
diff --git a/site/blog/_posts/2016-10-20-intellij-support.md b/site/blog/_posts/2016-10-20-intellij-support.md
new file mode 100644
index 0000000000..6bd7a6a423
--- /dev/null
+++ b/site/blog/_posts/2016-10-20-intellij-support.md
@@ -0,0 +1,30 @@
+---
+layout: posts
+title: IntelliJ and Android Studio support
+---
+
+We've recently open-sourced Bazel plugins for
+[IntelliJ and Android Studio](https://ij.bazel.io).
+
+## Key Features ##
+
+* Import a project directly from a BUILD file.
+* BUILD file integration: syntax highlighting, refactoring, find usages,
+ code completion, etc. [Skylark](/docs/skylark)
+ extensions are fully supported.
+* Compile your project and get navigatable Bazel compile errors in the IDE.
+* [Buildifier](https://github.com/bazelbuild/buildifier) integration
+* Support for Bazel run configurations for certain rule classes.
+* Run/debug tests directly through Bazel by right-clicking on
+ methods/classes/BUILD targets.
+
+## How do I get started? ##
+
+To try them out, you can install them directly from within the IDE
+(**Settings > Plugins > Browse repositories**), download them from the
+JetBrains [plugin repository](https://plugins.jetbrains.com/search/index?search=bazel),
+or build directly from [source](https://github.com/bazelbuild/intellij).
+
+Detailed docs are available [here](https://ij.bazel.io).
+
+The plugins are currently Linux-only, with plans for Mac support in the future.