settings.json 687 B

12345678910111213141516171819202122232425
  1. {
  2. // These settings tweaks to the cmake plugin will ensure
  3. // that you debug using cortex-debug instead of trying to launch
  4. // a Pico binary on the host
  5. "cmake.statusbar.advanced": {
  6. "debug": {
  7. "visibility": "hidden"
  8. },
  9. "launch": {
  10. "visibility": "hidden"
  11. },
  12. "build": {
  13. "visibility": "hidden"
  14. },
  15. "buildTarget": {
  16. "visibility": "hidden"
  17. }
  18. },
  19. "cmake.buildBeforeRun": true,
  20. "C_Cpp.default.configurationProvider": "ms-vscode.cmake-tools",
  21. "files.associations": {
  22. "functional": "c"
  23. },
  24. "cortex-debug.variableUseNaturalFormat": false
  25. }