fwcd

Results 150 comments of fwcd

@Evolveye The extension does not propose `getXYZ()`-style methods since there is a more idiomatic way of writing this in Kotlin: Instead of `getServer().getPluginManager()` you would write `server.pluginManager`. These properties are...

Could you post the log from the output tab? (select `Kotlin` from the drop down)

Did a file named `launch.json` open in your editor? If not, could you try opening `.vscode/launch.json` in your project folder? This file should contain a debug configuration for your program,...

Will be implemented once https://github.com/eclipse/lsp4j/issues/337 is resolved.

Interesting idea, I will look into this. Note that you can already grab the `vsix` from GitHub Releases and install it manually.

Please try adding the option `"kotlin.compiler.jvm.target": "1.8"` to your VSCode settings.

Looks very interesting, thanks for working on this! Hope to find some time to go through this in detail soon. If LSP were to get upstream support for the override/implement...

> The fully qualified name of your main class (usually your filename in PascalCase postfixed with Kt). Could you try `MainKt`?

Note that debugging support outside of Maven/Gradle projects is still pretty limited, you may have to manually compile with `kotlinc`.