Martynas Šateika
- Total activity 25
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 6
- Subscriptions 6
-
Edited Custom JDBC driver without database introspection
AnsweredHello, I am trying to write a simple JDBC driver that, instead of interacting with a database directly, sends queries to another system over HTTPS. The end goal is to be able to set up a Driver + D... -
Edited Supporting older versions of an IDE
AnsweredI would like to make my plugin compatible with a wide range of PhpStorm versions. Initially there were some issues with source code - for instance my plugin was making use of a VoidDataExternalizer... -
Created Supporting both Kotlin and Java
I wrote a plugin that currently works with Kotlin files. However the PSI elements that the plugin looks at (specific annotations, etc) can all be met in Java files as well. If I want to have the sa... -
Created InspectionSuppressor only receives elements of type KtFile
I am developing a plugin that ignores suppressions for a particular kind of Kotlin constructor. I added a dependency `on org.jetbrains.kotlin` in the plugin.xml file, and have a class that implemen... -
Created Referencing a DbDataSource
I am writing a plugin for a PHP framework that simplifies work with the database. When the user is viewing the database configuration file, I'd like them to be able to Ctrl+Click on a database name...