From cec451a4229317fca47ed317a22404079148cde4 Mon Sep 17 00:00:00 2001 From: Mukundan Sundararajan Date: Thu, 11 Feb 2021 14:17:23 -0800 Subject: [PATCH 1/3] Fix intellij docs --- .../developing-applications/ides/intellij.md | 50 +++++++++++++++++-- 1 file changed, 46 insertions(+), 4 deletions(-) diff --git a/daprdocs/content/en/developing-applications/ides/intellij.md b/daprdocs/content/en/developing-applications/ides/intellij.md index 2239a816a..d5854d087 100644 --- a/daprdocs/content/en/developing-applications/ides/intellij.md +++ b/daprdocs/content/en/developing-applications/ides/intellij.md @@ -25,7 +25,44 @@ Let's get started! First, quit IntelliJ. -Create or edit the file in `$HOME/.IdeaIC2019.3/config/tools/External\ Tools.xml` (change IntelliJ version in path if needed) to add a new `` entry: +### IntelliJ configuration file location + +{{< tabs Windows Linux MacOS >}} + +{{% codetab %}} +For versions [2020.1](https://www.jetbrains.com/help/idea/2020.1/tuning-the-ide.html#config-directory) and above the configuration files for tools should be located in: +```powershell +%USERPROFILE%\AppData\Roaming\JetBrains\IntelliJIdea2020.1\tools\ +``` +{{% /codetab %}} + + +{{% codetab %}} +For versions [2020.1](https://www.jetbrains.com/help/idea/2020.1/tuning-the-ide.html#config-directory) and above the configuration files for tools should be located in: + ```shell + $HOME/.config/JetBrains/IntelliJIdea2020.1/tools/ + ``` +{{% /codetab %}} + + +{{% codetab %}} +For versions [2020.1](https://www.jetbrains.com/help/idea/2020.1/tuning-the-ide.html#config-directory) and above the configuration files for tools should be located in: + +```shell +~/Library/Application Support/JetBrains/IntelliJIdea2020.1/tools/ +``` +{{% /codetab %}} + + +{{< /tabs >}} + +> The configuration file location is different for version 2019.3 or prior. See [here](https://www.jetbrains.com/help/idea/2019.3/tuning-the-ide.html#config-directory) for more details. + +Change the version in the path if needed. + +Create or edit the file in `/tools/External\ Tools.xml` (change IntelliJ version in path if needed). The `` is OS dependennt as seen above. + +Add a new `` entry: ```xml @@ -34,7 +71,8 @@ Create or edit the file in `$HOME/.IdeaIC2019.3/config/tools/External\ Tools.xml -