Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 1001 Bytes

EDITORS.md

File metadata and controls

18 lines (13 loc) · 1001 Bytes

Editor Integration

Visual Studio Code

See vscode-kotlin or install the extension from the marketplace.

Other Editors

Install a Debug Adapter Protocol client for your tool. Then invoke the debug adapter executable in a client-specific way. The server uses stdio to send and receive JSON messages.

Usage

  • Start the debugger with a launch request after the initialization procedure:

Sketch

  • Please note:
    • The projectRoot and mainClass arguments must be specified
    • The projectRoot argument should contain the absolute path to a Maven or a Gradle project folder with
      • a buildfile (pom.xml or build.gradle)
      • compiled output classes (located in build/classes/kotlin/main or target/classes/kotlin/main)