文件名称:breakpoint_magick:获取VS代码断点
文件大小:2KB
文件格式:ZIP
更新时间:2024-04-19 03:03:54
Python
断点魔术 获取带有VS Code断点的列表。 这可以帮助您将断点从VS Code转换为外部调试器接受的格式。 在VS Code中设置断点的优点是它们是动态的,因此在删除或插入行时它们会随代码一起上下移动。 例子 # Import things from breakpoint_magick import GetVSCodeBreakpoints # Get a list with VS Code breakpoints break_point_list = GetVSCodeBreakpoints () # Example of processing to new format print ( "# Breakpoints" ) for brk in break_point_list : file_name = brk . file . replace ( '"' , ' \\
【文件预览】:
breakpoint_magick-master
----.gitignore(77B)
----README.md(1KB)
----breakpoint_magick.py(4KB)