Skip to content

Latest commit

 

History

History
27 lines (23 loc) · 424 Bytes

dev.md

File metadata and controls

27 lines (23 loc) · 424 Bytes

Extensions

Visual Studio Code

  • install vsce
npm install -g vsce
  • run publish from extension's root dir
vsce publish -p $VSCODE_TOKEN

Debugger notes

Java

  • use jdb to attach
jdb -attach localhost:<port> -sourcepath ~/path/to/src/main/java/

Go

  • use 'dlv' to attach
dlv connect localhost:<port>
  • how to specify source path
    • init file TODO(mitchdraft)