Print Debugger
键盘:Sublime Text插件,用于轻松插入print/debug语句
详细信息
安装
- 总数 352
- Win 215
- Mac 77
- Linux 60
8月6日 | 8月5日 | 8月4日 | 8月3日 | 8月2日 | 8月1日 | 7月31日 | 7月30日 | 7月29日 | 7月28日 | 7月27日 | 7月26日 | 7月25日 | 7月24日 | 7月23日 | 7月22日 | 7月21日 | 7月20日 | 7月19日 | 7月18日 | 7月17日 | 7月16日 | 7月15日 | 7月14日 | 7月13日 | 7月12日 | 7月11日 | 7月10日 | 7月9日 | 7月8日 | 7月7日 | 7月6日 | 7月5日 | 7月4日 | 7月3日 | 7月2日 | 7月1日 | 6月30日 | 6月29日 | 6月28日 | 6月27日 | 6月26日 | 6月25日 | 6月24日 | 6月23日 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 2 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 |
Mac | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 |
README
🤖 PrintDebugger
PrintDebugger 是一个完全可定制的 Sublime Text 插件,可轻松插入调试和空print语句。
🎬 演示
PrintDebugger:打印调试
:
PrintDebugger:打印调试(前后对比)
:
💻 安装
安装PrintDebugger最简单的方法是使用 Package Control。在Sublime Text内启用后,打开命令面板,找到 Package Control: Install Package 并按 ENTER
。然后,在列表中找到 PrintDebugger 并按 ENTER
,该插件即已安装!
📈 使用方法
插件包括 print_debug
命令,可以在命令面板中以 PrintDebugger: Print Debug
的形式运行。还有一个带有参数 before_and_after
设置为 true
的命令变体:PrintDebugger: Print Debug (Before and After)
。
要打印包含变量名称和值的有意义的信息
- 点击或选择该变量
- 运行
PrintDebugger: Print Debug
命令
要查看行的前后变量的值
- 点击或选择该变量
- 运行
PrintDebugger: Print Debug (Before and After)
命令
要在光标位置插入空print语句
- 运行
PrintDebugger: Print Debug
命令
⚙ 自定义
PrintDebugger插件是完全可定制的。
🔧 首选项
在插件安装时默认包含了几种语言的语法。可以自定义与每种语言相关的print/debug语句、作用域和文件扩展名的语法。 还可以在设置中添加新的语法。
要修改或添加print/debug语法,请在命令面板中运行 Preferences: PrintDebugger
命令。
⌨ 键盘快捷方式
可以为命令创建键盘快捷方式。
- 在命令面板中运行
Preferences: PrintDebugger Key Bindings
命令。 - 添加您的关键绑定!
以下是一个示例的关键绑定文件
[
{
"keys": ["alt+d"],
"command": "print_debug"
},
{
"keys": ["alt+shift+d"],
"command": "print_debug",
"args": { "before_and_after": true }
}
]