├── .gitignore ├── README.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── learning-to-develop-plugin ├── coding-and-publish.md └── env-setup.md ├── plugin ├── build.gradle └── src │ └── main │ ├── kotlin │ └── com │ │ └── fashare │ │ └── plugin │ │ ├── BundleJsonLineMarkerProvider.kt │ │ ├── DeclareLineMarkerProvider.kt │ │ ├── InvokeLineMarkerProvider.kt │ │ ├── MyPsiUtil.kt │ │ ├── NavTable.kt │ │ └── SimpleUtil.kt │ └── resources │ ├── META-INF │ └── plugin.xml │ └── icons │ └── ic_launcher.png ├── release-output ├── SmallHelper-1.0-SNAPSHOT.zip └── SmallHelper-1.0.1.zip ├── screen-record ├── psi-viewer.png ├── small-can-not-navigate.png └── small.gif └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fashare2015/SmallHelper-IDEA-Plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fashare2015/SmallHelper-IDEA-Plugin/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- 1 | JETBRAINS_PASSWORD = 2 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fashare2015/SmallHelper-IDEA-Plugin/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fashare2015/SmallHelper-IDEA-Plugin/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fashare2015/SmallHelper-IDEA-Plugin/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fashare2015/SmallHelper-IDEA-Plugin/HEAD/gradlew.bat -------------------------------------------------------------------------------- /learning-to-develop-plugin/coding-and-publish.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fashare2015/SmallHelper-IDEA-Plugin/HEAD/learning-to-develop-plugin/coding-and-publish.md -------------------------------------------------------------------------------- /learning-to-develop-plugin/env-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fashare2015/SmallHelper-IDEA-Plugin/HEAD/learning-to-develop-plugin/env-setup.md -------------------------------------------------------------------------------- /plugin/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fashare2015/SmallHelper-IDEA-Plugin/HEAD/plugin/build.gradle -------------------------------------------------------------------------------- /plugin/src/main/kotlin/com/fashare/plugin/BundleJsonLineMarkerProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fashare2015/SmallHelper-IDEA-Plugin/HEAD/plugin/src/main/kotlin/com/fashare/plugin/BundleJsonLineMarkerProvider.kt -------------------------------------------------------------------------------- /plugin/src/main/kotlin/com/fashare/plugin/DeclareLineMarkerProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fashare2015/SmallHelper-IDEA-Plugin/HEAD/plugin/src/main/kotlin/com/fashare/plugin/DeclareLineMarkerProvider.kt -------------------------------------------------------------------------------- /plugin/src/main/kotlin/com/fashare/plugin/InvokeLineMarkerProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fashare2015/SmallHelper-IDEA-Plugin/HEAD/plugin/src/main/kotlin/com/fashare/plugin/InvokeLineMarkerProvider.kt -------------------------------------------------------------------------------- /plugin/src/main/kotlin/com/fashare/plugin/MyPsiUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fashare2015/SmallHelper-IDEA-Plugin/HEAD/plugin/src/main/kotlin/com/fashare/plugin/MyPsiUtil.kt -------------------------------------------------------------------------------- /plugin/src/main/kotlin/com/fashare/plugin/NavTable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fashare2015/SmallHelper-IDEA-Plugin/HEAD/plugin/src/main/kotlin/com/fashare/plugin/NavTable.kt -------------------------------------------------------------------------------- /plugin/src/main/kotlin/com/fashare/plugin/SimpleUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fashare2015/SmallHelper-IDEA-Plugin/HEAD/plugin/src/main/kotlin/com/fashare/plugin/SimpleUtil.kt -------------------------------------------------------------------------------- /plugin/src/main/resources/META-INF/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fashare2015/SmallHelper-IDEA-Plugin/HEAD/plugin/src/main/resources/META-INF/plugin.xml -------------------------------------------------------------------------------- /plugin/src/main/resources/icons/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fashare2015/SmallHelper-IDEA-Plugin/HEAD/plugin/src/main/resources/icons/ic_launcher.png -------------------------------------------------------------------------------- /release-output/SmallHelper-1.0-SNAPSHOT.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fashare2015/SmallHelper-IDEA-Plugin/HEAD/release-output/SmallHelper-1.0-SNAPSHOT.zip -------------------------------------------------------------------------------- /release-output/SmallHelper-1.0.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fashare2015/SmallHelper-IDEA-Plugin/HEAD/release-output/SmallHelper-1.0.1.zip -------------------------------------------------------------------------------- /screen-record/psi-viewer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fashare2015/SmallHelper-IDEA-Plugin/HEAD/screen-record/psi-viewer.png -------------------------------------------------------------------------------- /screen-record/small-can-not-navigate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fashare2015/SmallHelper-IDEA-Plugin/HEAD/screen-record/small-can-not-navigate.png -------------------------------------------------------------------------------- /screen-record/small.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fashare2015/SmallHelper-IDEA-Plugin/HEAD/screen-record/small.gif -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'SmallHelper' 2 | 3 | include ":plugin" 4 | 5 | --------------------------------------------------------------------------------