Moved IDE settings, caches, logs, plugins link to Appendix I. Added IDE Development Instances link to Part I intro page

This commit is contained in:
JohnHake 2018-09-13 08:53:41 -07:00
parent e5fae7346e
commit b838244aad
4 changed files with 5 additions and 3 deletions

View File

@ -240,6 +240,7 @@
* [Introduction](resources.md)
* [IntelliJ Community Edition on GitHub](https://github.com/JetBrains/intellij-community)
* [IDE Settings, Caches, Logs, and Plugins](https://intellij-support.jetbrains.com/hc/en-us/articles/206544519-Directories-used-by-the-IDE-to-store-settings-caches-plugins-and-logs)
* [IntelliJ Plugins](https://github.com/JetBrains/intellij-plugins)
* [IntelliJ Scala Plugin](https://github.com/JetBrains/intellij-scala)
* [Gradle IntelliJ Plugin](https://github.com/JetBrains/gradle-intellij-plugin)

View File

@ -9,5 +9,5 @@ It will familiarize you with the working environment, project structure, and fre
* [Getting Started](basics/getting_started.md)
* [Plugin Structure](basics/plugin_structure.md)
* [Kotlin for Plugin Developers](/tutorials/kotlin.md)
* [IDE Settings, Caches, Logs, and Plugins](https://intellij-support.jetbrains.com/hc/en-us/articles/206544519-Directories-used-by-the-IDE-to-store-settings-caches-plugins-and-logs)
* [IDE Development Instances](basics/ide_development_instance.md)
* [Plugin development FAQ](faq.md)

View File

@ -17,7 +17,7 @@ See [Configuring a Gradle Plugin Project](/tutorials/build_system/prerequisites.
for more information about specifying a **Sandbox Home** location. The default **Sandbox Home** location
for Gradle-based plugin projects is:
* **Windows** `<Project Dir>\build\idea-sandbox`
* **Linux or Macos** `<Project Dir>/build/idea-sandbox`
* **Linux or macOS** `<Project Dir>/build/idea-sandbox`
### Sandbox Home Location for DevKit-Based Plugin Projects
For DevKit-based plugins, the default **Sandbox Home** location is defined in the IntelliJ Platform Plugin SDK.
@ -25,7 +25,7 @@ See specifying the [Sandbox Home for DevKit Projects](/basics/getting_started/se
The default **Sandbox Home** directory location for DevKit-based plugin projects is:
* **Windows:** `<User home>\.<product_system_name><product_version>\system\plugins-sandbox\`
* **Linux:** `~/.<product_system_name><product_version>/system/plugins-sandbox/`
* **Macos** `~/Library/Caches/<product_system_name><product_version>/plugins-sandbox/`
* **macOS** `~/Library/Caches/<product_system_name><product_version>/plugins-sandbox/`
### Development Instance Settings, Caches, Logs, and Plugins
Within the **Sandbox Home** directory are subdirectories pertaining to the Development Instance:

View File

@ -5,6 +5,7 @@ title: Resources
The following links represent useful resources for working with the _IntelliJ Platform_ and creating plugins.
* [IntelliJ Community Edition on GitHub](https://github.com/JetBrains/intellij-community)
* [IDE Settings, Caches, Logs, and Plugins](https://intellij-support.jetbrains.com/hc/en-us/articles/206544519-Directories-used-by-the-IDE-to-store-settings-caches-plugins-and-logs)
* [IntelliJ Plugins](https://github.com/JetBrains/intellij-plugins)
* [IntelliJ Scala Plugin](https://github.com/JetBrains/intellij-scala)
* [Gradle Plugin for Grammar-Kit](https://github.com/hurricup/gradle-grammar-kit-plugin)