Skip to content

Assistant View is a second code editor that aims to show you files that are contextually helpful, based on the file you are currently working on.

License

Notifications You must be signed in to change notification settings

Pkshields/AssistantView

Repository files navigation

Assistant View

JetBrains Plugins CI Status Badge

Assistant View is a second code editor that aims to show you files that are contextually helpful, based on the file you are currently working on.

Supported Platforms

Assistant View is an IDE plugin that supports...

...and supports the following languages...

  • Kotlin
  • Java
  • C
  • C++

Installation

You can search for Assistant View in the Plugins Marketplace within your IDE of choice, or you can visit the JetBrains Marketplace directly and install it from there.

Usage

Once installed, the Assistant View window will be available in the tool window list on the right hand side of your IDE, or under View >> Tool Windows >> Assistant View.

Once Assistant View is open, that's it! Navigate around your codebase and Assistant View will do its best trying to open files that it thinks will be helpful to you.

Development

Working in the Assistant View codebase requires:

It is a Gradle based project, utilising the Gradle IntelliJ Plugin, so all standard Gradle commands are used here, plus a few specialised ones provided by the IntelliJ plugin.

Project Structure

Due to Assistant View being a cross-IDE plugin that still requires language specific implementations, the project has a slightly peculiar project structure. This is designed to get around the IDE specific limitations of the Gradle IntelliJ Plugin. Logic in this project is structured like so:

  • Root Project: The first port of call for any features in Assistant View. Contains all cross-platform logic that does not need to be accessed by language specific subprojects.
    • jvm: JVM language specific logic.
    • cpp: C / C++ language specific logic.
    • common: All cross-platform logic that does need to be accessed by language specific subprojects.

Debugging The Plugin

Within the IntelliJ project, you will notice separate run configurations to debug the plugin in each of the supported IDEs. This can also be run via the command line:

  • Run in IntelliJ CE - ./gradlew runIde
  • Run in Android Studio - ./gradlew runIde -Pide=android-studio
  • Run in CLion (requires CLion license) - ./gradlew runIde -Pide=clion
  • Run in CLion EAP - ./gradlew runIde -Pide=clion-eap

About

Assistant View is a second code editor that aims to show you files that are contextually helpful, based on the file you are currently working on.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages