├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── publish-gradle-plugin.yml │ └── publish-ide-plugin.yml ├── .gitignore ├── .idea ├── .name └── icon.svg ├── .run ├── Run Plugin.run.xml └── Run Verifications.run.xml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── images ├── colorPreview-dark.png ├── colorPreview-light.png ├── componentFunHighlighting-dark.png ├── componentFunHighlighting-light.png ├── demoApkGutter-dark.png ├── demoApkGutter-light.png ├── demoApkInstalling-dark.png ├── demoApkInstalling-light.png ├── hexFiltering-dark.png ├── hexFiltering-light.png ├── iconsRendering-dark.png ├── iconsRendering-light.png ├── inlayHintCompletionFiltering-dark.png ├── inlayHintCompletionFiltering-light.png ├── inlayHints-dark.png ├── inlayHints-light.png ├── kdocImagesRendering-dark.png ├── kdocImagesRendering-light.png ├── kelp-banner-dark.svg ├── kelp-banner-light.svg ├── live-templates-dark.png └── live-templates-light.png ├── kelpGradlePlugin ├── build.gradle.kts └── src │ └── main │ └── kotlin │ └── ru │ └── ozon │ └── kelp │ ├── CheckIdePluginPresence.kt │ ├── KelpGradlePlugin.kt │ ├── KelpGradlePluginExtension.kt │ ├── SearchForDemoAppApk.kt │ ├── ThrowException.kt │ └── downloaders │ ├── ApkDownloader.kt │ ├── BrowserApkDownloader.kt │ └── SimpleApkDownloader.kt ├── settings.gradle.kts └── src └── main ├── kotlin └── ru │ └── ozon │ └── ideplugin │ └── kelp │ ├── KDocImageDocumentationProvider.kt │ ├── KelpBundle.kt │ ├── KelpIcons.kt │ ├── Utils.kt │ ├── codeCompletion │ ├── CompletionContributor.kt │ └── DsComponentFunLookupElement.kt │ ├── colorPreviews │ ├── DsColorLookupElement.kt │ ├── DsColorPreviewLineMarker.kt │ ├── HexToARGB.kt │ └── RoundedColorsIcon.kt │ ├── demoApp │ ├── DsComponentInDemoAppLineMarker.kt │ └── OpenDsComponentInDemoAppIntention.kt │ ├── demojet │ └── DemoJetIntentionAction.kt │ ├── inlayHints │ ├── InlayHintLookupElement.kt │ └── InlayHintsProvider.kt │ ├── liveTemplates │ └── AddLiveTemplates.kt │ ├── pluginConfig │ ├── GrazieProNotification.kt │ ├── KelpConfig.kt │ ├── KelpConfigService.kt │ ├── PluginPresenceFile.kt │ ├── RegexSerializer.kt │ └── WrappingJsonListSerializer.kt │ └── resourceIcons │ ├── DsIconLookupElement.kt │ ├── GetDsIconResourceName.kt │ └── gutter │ ├── AndroidKotlinResourceExternalAnnotatorBase.kt │ ├── K1DsIconAnnotator.kt │ └── K2DsIconAnnotator.kt └── resources ├── META-INF ├── plugin.xml └── pluginIcon.svg ├── inlayProviders └── kelpPaddingInlayHints.kotlin │ └── preview.kt ├── intentionDescriptions ├── DemoJetIntentionAction │ ├── after.kt.template │ ├── before.kt.template │ └── description.html └── OpenDsComponentInDemoAppIntention │ └── description.html └── messages └── KelpBundle.properties /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/publish-gradle-plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/.github/workflows/publish-gradle-plugin.yml -------------------------------------------------------------------------------- /.github/workflows/publish-ide-plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/.github/workflows/publish-ide-plugin.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | Kelp -------------------------------------------------------------------------------- /.idea/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/.idea/icon.svg -------------------------------------------------------------------------------- /.run/Run Plugin.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/.run/Run Plugin.run.xml -------------------------------------------------------------------------------- /.run/Run Verifications.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/.run/Run Verifications.run.xml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/gradlew.bat -------------------------------------------------------------------------------- /images/colorPreview-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/images/colorPreview-dark.png -------------------------------------------------------------------------------- /images/colorPreview-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/images/colorPreview-light.png -------------------------------------------------------------------------------- /images/componentFunHighlighting-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/images/componentFunHighlighting-dark.png -------------------------------------------------------------------------------- /images/componentFunHighlighting-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/images/componentFunHighlighting-light.png -------------------------------------------------------------------------------- /images/demoApkGutter-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/images/demoApkGutter-dark.png -------------------------------------------------------------------------------- /images/demoApkGutter-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/images/demoApkGutter-light.png -------------------------------------------------------------------------------- /images/demoApkInstalling-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/images/demoApkInstalling-dark.png -------------------------------------------------------------------------------- /images/demoApkInstalling-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/images/demoApkInstalling-light.png -------------------------------------------------------------------------------- /images/hexFiltering-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/images/hexFiltering-dark.png -------------------------------------------------------------------------------- /images/hexFiltering-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/images/hexFiltering-light.png -------------------------------------------------------------------------------- /images/iconsRendering-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/images/iconsRendering-dark.png -------------------------------------------------------------------------------- /images/iconsRendering-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/images/iconsRendering-light.png -------------------------------------------------------------------------------- /images/inlayHintCompletionFiltering-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/images/inlayHintCompletionFiltering-dark.png -------------------------------------------------------------------------------- /images/inlayHintCompletionFiltering-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/images/inlayHintCompletionFiltering-light.png -------------------------------------------------------------------------------- /images/inlayHints-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/images/inlayHints-dark.png -------------------------------------------------------------------------------- /images/inlayHints-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/images/inlayHints-light.png -------------------------------------------------------------------------------- /images/kdocImagesRendering-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/images/kdocImagesRendering-dark.png -------------------------------------------------------------------------------- /images/kdocImagesRendering-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/images/kdocImagesRendering-light.png -------------------------------------------------------------------------------- /images/kelp-banner-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/images/kelp-banner-dark.svg -------------------------------------------------------------------------------- /images/kelp-banner-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/images/kelp-banner-light.svg -------------------------------------------------------------------------------- /images/live-templates-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/images/live-templates-dark.png -------------------------------------------------------------------------------- /images/live-templates-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/images/live-templates-light.png -------------------------------------------------------------------------------- /kelpGradlePlugin/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/kelpGradlePlugin/build.gradle.kts -------------------------------------------------------------------------------- /kelpGradlePlugin/src/main/kotlin/ru/ozon/kelp/CheckIdePluginPresence.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/kelpGradlePlugin/src/main/kotlin/ru/ozon/kelp/CheckIdePluginPresence.kt -------------------------------------------------------------------------------- /kelpGradlePlugin/src/main/kotlin/ru/ozon/kelp/KelpGradlePlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/kelpGradlePlugin/src/main/kotlin/ru/ozon/kelp/KelpGradlePlugin.kt -------------------------------------------------------------------------------- /kelpGradlePlugin/src/main/kotlin/ru/ozon/kelp/KelpGradlePluginExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/kelpGradlePlugin/src/main/kotlin/ru/ozon/kelp/KelpGradlePluginExtension.kt -------------------------------------------------------------------------------- /kelpGradlePlugin/src/main/kotlin/ru/ozon/kelp/SearchForDemoAppApk.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/kelpGradlePlugin/src/main/kotlin/ru/ozon/kelp/SearchForDemoAppApk.kt -------------------------------------------------------------------------------- /kelpGradlePlugin/src/main/kotlin/ru/ozon/kelp/ThrowException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/kelpGradlePlugin/src/main/kotlin/ru/ozon/kelp/ThrowException.kt -------------------------------------------------------------------------------- /kelpGradlePlugin/src/main/kotlin/ru/ozon/kelp/downloaders/ApkDownloader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/kelpGradlePlugin/src/main/kotlin/ru/ozon/kelp/downloaders/ApkDownloader.kt -------------------------------------------------------------------------------- /kelpGradlePlugin/src/main/kotlin/ru/ozon/kelp/downloaders/BrowserApkDownloader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/kelpGradlePlugin/src/main/kotlin/ru/ozon/kelp/downloaders/BrowserApkDownloader.kt -------------------------------------------------------------------------------- /kelpGradlePlugin/src/main/kotlin/ru/ozon/kelp/downloaders/SimpleApkDownloader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/kelpGradlePlugin/src/main/kotlin/ru/ozon/kelp/downloaders/SimpleApkDownloader.kt -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- 1 | rootProject.name = "Kelp" 2 | include("kelpGradlePlugin") 3 | -------------------------------------------------------------------------------- /src/main/kotlin/ru/ozon/ideplugin/kelp/KDocImageDocumentationProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/src/main/kotlin/ru/ozon/ideplugin/kelp/KDocImageDocumentationProvider.kt -------------------------------------------------------------------------------- /src/main/kotlin/ru/ozon/ideplugin/kelp/KelpBundle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/src/main/kotlin/ru/ozon/ideplugin/kelp/KelpBundle.kt -------------------------------------------------------------------------------- /src/main/kotlin/ru/ozon/ideplugin/kelp/KelpIcons.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/src/main/kotlin/ru/ozon/ideplugin/kelp/KelpIcons.kt -------------------------------------------------------------------------------- /src/main/kotlin/ru/ozon/ideplugin/kelp/Utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/src/main/kotlin/ru/ozon/ideplugin/kelp/Utils.kt -------------------------------------------------------------------------------- /src/main/kotlin/ru/ozon/ideplugin/kelp/codeCompletion/CompletionContributor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/src/main/kotlin/ru/ozon/ideplugin/kelp/codeCompletion/CompletionContributor.kt -------------------------------------------------------------------------------- /src/main/kotlin/ru/ozon/ideplugin/kelp/codeCompletion/DsComponentFunLookupElement.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/src/main/kotlin/ru/ozon/ideplugin/kelp/codeCompletion/DsComponentFunLookupElement.kt -------------------------------------------------------------------------------- /src/main/kotlin/ru/ozon/ideplugin/kelp/colorPreviews/DsColorLookupElement.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/src/main/kotlin/ru/ozon/ideplugin/kelp/colorPreviews/DsColorLookupElement.kt -------------------------------------------------------------------------------- /src/main/kotlin/ru/ozon/ideplugin/kelp/colorPreviews/DsColorPreviewLineMarker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/src/main/kotlin/ru/ozon/ideplugin/kelp/colorPreviews/DsColorPreviewLineMarker.kt -------------------------------------------------------------------------------- /src/main/kotlin/ru/ozon/ideplugin/kelp/colorPreviews/HexToARGB.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/src/main/kotlin/ru/ozon/ideplugin/kelp/colorPreviews/HexToARGB.kt -------------------------------------------------------------------------------- /src/main/kotlin/ru/ozon/ideplugin/kelp/colorPreviews/RoundedColorsIcon.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/src/main/kotlin/ru/ozon/ideplugin/kelp/colorPreviews/RoundedColorsIcon.kt -------------------------------------------------------------------------------- /src/main/kotlin/ru/ozon/ideplugin/kelp/demoApp/DsComponentInDemoAppLineMarker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/src/main/kotlin/ru/ozon/ideplugin/kelp/demoApp/DsComponentInDemoAppLineMarker.kt -------------------------------------------------------------------------------- /src/main/kotlin/ru/ozon/ideplugin/kelp/demoApp/OpenDsComponentInDemoAppIntention.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/src/main/kotlin/ru/ozon/ideplugin/kelp/demoApp/OpenDsComponentInDemoAppIntention.kt -------------------------------------------------------------------------------- /src/main/kotlin/ru/ozon/ideplugin/kelp/demojet/DemoJetIntentionAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/src/main/kotlin/ru/ozon/ideplugin/kelp/demojet/DemoJetIntentionAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/ru/ozon/ideplugin/kelp/inlayHints/InlayHintLookupElement.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/src/main/kotlin/ru/ozon/ideplugin/kelp/inlayHints/InlayHintLookupElement.kt -------------------------------------------------------------------------------- /src/main/kotlin/ru/ozon/ideplugin/kelp/inlayHints/InlayHintsProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/src/main/kotlin/ru/ozon/ideplugin/kelp/inlayHints/InlayHintsProvider.kt -------------------------------------------------------------------------------- /src/main/kotlin/ru/ozon/ideplugin/kelp/liveTemplates/AddLiveTemplates.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/src/main/kotlin/ru/ozon/ideplugin/kelp/liveTemplates/AddLiveTemplates.kt -------------------------------------------------------------------------------- /src/main/kotlin/ru/ozon/ideplugin/kelp/pluginConfig/GrazieProNotification.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/src/main/kotlin/ru/ozon/ideplugin/kelp/pluginConfig/GrazieProNotification.kt -------------------------------------------------------------------------------- /src/main/kotlin/ru/ozon/ideplugin/kelp/pluginConfig/KelpConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/src/main/kotlin/ru/ozon/ideplugin/kelp/pluginConfig/KelpConfig.kt -------------------------------------------------------------------------------- /src/main/kotlin/ru/ozon/ideplugin/kelp/pluginConfig/KelpConfigService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/src/main/kotlin/ru/ozon/ideplugin/kelp/pluginConfig/KelpConfigService.kt -------------------------------------------------------------------------------- /src/main/kotlin/ru/ozon/ideplugin/kelp/pluginConfig/PluginPresenceFile.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/src/main/kotlin/ru/ozon/ideplugin/kelp/pluginConfig/PluginPresenceFile.kt -------------------------------------------------------------------------------- /src/main/kotlin/ru/ozon/ideplugin/kelp/pluginConfig/RegexSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/src/main/kotlin/ru/ozon/ideplugin/kelp/pluginConfig/RegexSerializer.kt -------------------------------------------------------------------------------- /src/main/kotlin/ru/ozon/ideplugin/kelp/pluginConfig/WrappingJsonListSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/src/main/kotlin/ru/ozon/ideplugin/kelp/pluginConfig/WrappingJsonListSerializer.kt -------------------------------------------------------------------------------- /src/main/kotlin/ru/ozon/ideplugin/kelp/resourceIcons/DsIconLookupElement.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/src/main/kotlin/ru/ozon/ideplugin/kelp/resourceIcons/DsIconLookupElement.kt -------------------------------------------------------------------------------- /src/main/kotlin/ru/ozon/ideplugin/kelp/resourceIcons/GetDsIconResourceName.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/src/main/kotlin/ru/ozon/ideplugin/kelp/resourceIcons/GetDsIconResourceName.kt -------------------------------------------------------------------------------- /src/main/kotlin/ru/ozon/ideplugin/kelp/resourceIcons/gutter/AndroidKotlinResourceExternalAnnotatorBase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/src/main/kotlin/ru/ozon/ideplugin/kelp/resourceIcons/gutter/AndroidKotlinResourceExternalAnnotatorBase.kt -------------------------------------------------------------------------------- /src/main/kotlin/ru/ozon/ideplugin/kelp/resourceIcons/gutter/K1DsIconAnnotator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/src/main/kotlin/ru/ozon/ideplugin/kelp/resourceIcons/gutter/K1DsIconAnnotator.kt -------------------------------------------------------------------------------- /src/main/kotlin/ru/ozon/ideplugin/kelp/resourceIcons/gutter/K2DsIconAnnotator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/src/main/kotlin/ru/ozon/ideplugin/kelp/resourceIcons/gutter/K2DsIconAnnotator.kt -------------------------------------------------------------------------------- /src/main/resources/META-INF/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/src/main/resources/META-INF/plugin.xml -------------------------------------------------------------------------------- /src/main/resources/META-INF/pluginIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/src/main/resources/META-INF/pluginIcon.svg -------------------------------------------------------------------------------- /src/main/resources/inlayProviders/kelpPaddingInlayHints.kotlin/preview.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/src/main/resources/inlayProviders/kelpPaddingInlayHints.kotlin/preview.kt -------------------------------------------------------------------------------- /src/main/resources/intentionDescriptions/DemoJetIntentionAction/after.kt.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/src/main/resources/intentionDescriptions/DemoJetIntentionAction/after.kt.template -------------------------------------------------------------------------------- /src/main/resources/intentionDescriptions/DemoJetIntentionAction/before.kt.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/src/main/resources/intentionDescriptions/DemoJetIntentionAction/before.kt.template -------------------------------------------------------------------------------- /src/main/resources/intentionDescriptions/DemoJetIntentionAction/description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/src/main/resources/intentionDescriptions/DemoJetIntentionAction/description.html -------------------------------------------------------------------------------- /src/main/resources/intentionDescriptions/OpenDsComponentInDemoAppIntention/description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/src/main/resources/intentionDescriptions/OpenDsComponentInDemoAppIntention/description.html -------------------------------------------------------------------------------- /src/main/resources/messages/KelpBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozontech/kelp/HEAD/src/main/resources/messages/KelpBundle.properties --------------------------------------------------------------------------------