vscode-java-kotlin
vscode-java-kotlin copied to clipboard
Experimental support for importing Kotlin code into Java projects via a JDT.LS extension
I tried to use your plugin in a mixed Kotlin Java Maven project, without any success. I have a rather stupid question: Do I have to do any further configuration...
This extension will not work if `java.server.launchMode` is set to `LightWeight`. ``` [Extension Host] The command: vscode.java.resolveMainMethod is not supported in LightWeight mode. See: https://github.com/redhat-developer/vscode-java/issues/1480 y @ workbench.desktop.main.js:97 $logExtensionHostMessage @...
Since #3 and likely more such integrations would require communicating between the java.ls extension and the kotlin language server running separately, I tried an alternate approach to simplify the communication....
I'm often getting these or similar errors when trying out a project with both Java and Kotlin source. Is is a [sample Android project](https://github.com/nisargjhaveri/vscode-android-debug/tree/main/examples/SampleApplication) I have with just a couple...
I'm trying to set this up locally and make some changes. I need some help figuring out how to actually setup debugging for the Java parts of the plugin? I'd...
Using ``` 17 2.7.4 ``` then following README to build and package, seems not working, still seeing a bunch of import errors in java files.
We should set up GitHub actions workflows to build (and later also deploy) the extension, like in [`vscode-kotlin`](https://github.com/fwcd/vscode-kotlin).
It would be nice if we could use Gradle here too, both for consistency with the other projects (KLS, KDA) and to simplify the build process, since e.g. the copying...
When we request a definition of a kotlin symbol, we are taken to the bytecode rather than the source code. We can probably fix this by adding a [contentProvider](https://github.com/eclipse/eclipse.jdt.ls/blob/master/org.eclipse.jdt.ls.core/plugin.xml#L6). This...