
VSCode
solejay
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
VSCode python -m 调试
若运行命令为 python -m x.test --args安装 debugpypython3 -m pip install debugpy 运行python3 -m debugpy --listen 5678 --wait-for-client -m x.test --args在 .vscode 文件夹下创建 launch.json{ // Use IntelliSense to learn about possible attributes. // Hover原创 2021-01-28 15:30:34 · 2149 阅读 · 1 评论 -
VSCode 使用技巧
转到调用函数的定义Ctrl + 鼠标左击VSCode 返回上一个浏览位置(Debug 用)Windows: Alt + ← ; 或者 鼠标侧键Linux: Ctrl + Alt + - ; 貌似数字键盘的减号没效果Mac: Ctrl + -左右括号之间跳转ctrl + shift + \参考链接VSCode 返回上一个光标 (上一个浏览位置)...原创 2020-09-14 14:45:50 · 723 阅读 · 0 评论 -
完美解决vscode使用相对路径问题
在扩展里面下载 Code RunnerCtrl+Shift+P 搜索 setting 打开全局配置页面对 Code Runner 进行配置 "code-runner.executorMap": { "python": "/home/solejay/anaconda3/envs/ml/bin/python", }, "code-runne...原创 2020-03-13 12:05:26 · 16729 阅读 · 2 评论