1 Star 0 Fork 0

zdevt/YouCompleteMe

Create your Gitee Account
Explore and code with more than 13.5 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
.vimspector.json 1.47 KB
Copy Edit Raw Blame History
Ben Jackson authored 2022-08-17 04:48 +08:00 . vimspector: made test debugging work again
{
"$schema": "https://puremourning.github.io/vimspector/schema/vimspector.schema.json",
"configurations": {
"Python: Attach To Vim": {
"variables": {
"port": "5678",
"host": "localhost"
},
"adapter": "multi-session",
"configuration": {
"request": "attach"
}
},
"python - launch pytest": {
"adapter": "debugpy",
"variables": [
{
"python": {
"shell": "/bin/bash -c 'if [ -z \"${dollar}VIRTUAL_ENV\" ]; then echo $$(which python3); else echo \"${dollar}VIRTUAL_ENV/bin/python\"; fi'"
}
},
{
"python_path": {
"shell": [
"${python}",
"${workspaceRoot}/run_tests.py",
"--dump-path"
]
}
}
],
"configuration": {
"name": "Python run test",
"type": "debugpy",
"request": "launch",
"cwd": "${workspaceRoot}",
"stopOnEntry": false,
"console": "integratedTerminal",
"justMyCode": true,
"logToFile": true,
"showReturnValue": true,
"debugOptions": [],
"module": "unittest",
"python": "${python}",
"args": [
"-v",
"${Test}"
],
"env": {
"PYTHONPATH": "${python_path}",
"LD_LIBRARY_PATH": "${workspaceRoot}/third_party/ycmd/third_party/clang/lib",
"YCM_TEST_NO_RETRY": "1"
}
}
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zdevt/YouCompleteMe.git
git@gitee.com:zdevt/YouCompleteMe.git
zdevt
YouCompleteMe
YouCompleteMe
master

Search