Markdown问题

Visual Studio Code - 图1
有时候vscode写的markdown会出现在 [从] 和 [其]之间有一个乱码,这是因为 [从] 和 [其] 中间藏着一个不可见的字符,只是 VSCode 没把它渲染出来。打开VSCode的setting.json

  1. editor.renderControlCharacters": true`

就能看见这个控制符了

使用Visual Studio Code就行C++调试

tasks.json负责build配置

  1. {
  2. // See https://go.microsoft.com/fwlink/?LinkId=733558
  3. // for the documentation about the tasks.json format
  4. "version": "2.0.0",
  5. "tasks": [
  6. {
  7. "label": "build",
  8. "type": "shell",
  9. "command": "g++ -g hello.cpp -o hello",
  10. "group": {
  11. "kind": "build",
  12. "isDefault": true
  13. },
  14. "problemMatcher":"$gcc"
  15. }
  16. ]
  17. }

launch.json负责debug的配置

  1. {
  2. // 使用 IntelliSense 了解相关属性。
  3. // 悬停以查看现有属性的描述。
  4. // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
  5. "version": "0.2.0",
  6. "configurations": [
  7. {
  8. "name": "(lldb) Launch",
  9. "type": "cppdbg",
  10. "request": "launch",
  11. "preLaunchTask": "build",
  12. "program": "${workspaceFolder}/hello",
  13. "args": [],
  14. "stopAtEntry": false,
  15. "cwd": "${workspaceFolder}",
  16. "environment": [],
  17. "externalConsole": true,
  18. "MIMode": "lldb"
  19. }
  20. ]
  21. }