mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-28 01:07:49 +08:00
Bumps org.jetbrains.intellij from 1.0 to 1.1.2. --- updated-dependencies: - dependency-name: org.jetbrains.intellij dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
PSI Demo 
Reference: Navigating the PSI in IntelliJ SDK Docs
Quickstart
PSI Demo project demonstrates working with the PSI Navigation by implementing AnAction
that through the message dialog, informs about:
- an element at the caret,
- containing method,
- containing class,
- local variables.
Actions
ID | Implementation | Base Action Class |
---|---|---|
PsiNavigationDemo |
PsiNavigationDemoAction | AnAction |
Reference: Action System in IntelliJ SDK Docs