La simu multi-agents qui repeint une image, mais en c++ Boilerplate pompé ici : https://github.com/andrew-r-king/sfml-vscode-boilerplate
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_keybindings.json 1.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. // Place your key bindings in this file to overwrite the defaults
  2. [
  3. {
  4. "key": "f8",
  5. "command": "-editor.action.marker.next",
  6. "when": "editorFocus && !editorReadonly"
  7. },
  8. {
  9. "key": "f9",
  10. "command": "-editor.debug.action.toggleBreakpoint",
  11. "when": "editorTextFocus"
  12. },
  13. {
  14. "key": "f10",
  15. "command": "-workbench.action.debug.stepOver",
  16. "when": "inDebugMode"
  17. },
  18. {
  19. "key": "shift+f8",
  20. "command": "-editor.action.marker.prev",
  21. "when": "editorFocus && !editorReadonly"
  22. },
  23. {
  24. "key": "shift+f9",
  25. "command": "-editor.debug.action.toggleInlineBreakpoint",
  26. "when": "editorTextFocus"
  27. },
  28. {
  29. "key": "shift+f10",
  30. "command": "-editor.action.showContextMenu",
  31. "when": "editorTextFocus"
  32. },
  33. {
  34. "key": "f8",
  35. "command": "workbench.action.debug.selectandstart"
  36. },
  37. {
  38. "key": "f9",
  39. "command": "workbench.action.tasks.runTask",
  40. "args": "Build & Run: Release"
  41. },
  42. {
  43. "key": "shift+f9",
  44. "command": "workbench.action.tasks.runTask",
  45. "args": "Run: Release"
  46. },
  47. {
  48. "key": "f10",
  49. "command": "workbench.action.tasks.runTask",
  50. "args": "Build & Run: Debug"
  51. },
  52. {
  53. "key": "shift+f10",
  54. "command": "workbench.action.tasks.runTask",
  55. "args": "Run: Debug"
  56. },
  57. ]