breakpoint_magick:获取VS代码断点 源码
断点魔术 获取带有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 ( '"' , ' \\
用户评论