Skip to content

Latest commit

 

History

History
24 lines (15 loc) · 1.18 KB

configuring-your-editor.md

File metadata and controls

24 lines (15 loc) · 1.18 KB

Configuring your editor

These are not required, and most of this isn't specific to Burn, but it's definitely helpful if you haven't already done it.

VSCode

  1. Install the following extensions:
  1. Open Command Palette with Ctrl+Shift+P or F1 and type LLDB: Generate Launch Configurations from Cargo.toml then select it, this will generate a file that should be saved as .vscode/launch.json.

  2. Now you can enable breakpoint on code through IDE and then start debugging the library/binary you want, such as the following example:

  1. If you're creating a new library or binary, keep in mind to repeat the step 2 to always keep a fresh list of targets.

Have another editor? Open a PR!