欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

VScode使用记录

程序员文章站 2022-04-26 14:44:06
...

VScode使用记录

vscode debug方法

参考这里

  • 安装插件c/c++
  • 选择c++ edit Configurations(json),会生成c_cpp_properties.json
  • Run and Debug,选择gcc调试,会生成launch.json

调试方法,添加断点(一般在每个函数入口处添加便于观察函数内部),Variables会看到变量的变化。

mac上完全卸载vscode

参考这里

卸载vscode应用后执行以下命令行

rm -fr ~/Library/Preferences/com.microsoft.VSCode.helper.plist
rm -fr ~/Library/Preferences/com.microsoft.VSCode.plist
rm -fr ~/Library/Caches/com.microsoft.VSCode
rm -fr ~/Library/Caches/com.microsoft.VSCode.ShipIt/
rm -fr ~/Library/Application\ Support/Code/
rm -fr ~/Library/Saved\ Application\ State/com.microsoft.VSCode.savedState/
rm -fr ~/.vscode/