elb*_*aid 10 xdebug sublimetext3
我想在Sublime Text 3中更改XDebug插件的键绑定.如何更改Run,Step over,Step into,Step out等的键绑定?
elb*_*aid 19
这个答案是来自user2968356的更完整的答案.
要完成此答案,该.sublime-package文件是一个存档,因此可以使用ZIP实用程序对其进行解压缩.没有必要编辑Default.sublime-keymap包中的内容,我们可以复制键绑定并将其修改为Default.sublime-keymap可从Preferences - > Key Bindings - Sublime Text中的User中添加.
并提供一个快捷方式,这里是XDebug包的默认键绑定,随意修改:
{"keys": ["ctrl+f8"], "command": "xdebug_breakpoint"},
{"keys": ["shift+f8"], "command": "xdebug_conditional_breakpoint"},
{"keys": ["ctrl+shift+f5"], "command": "xdebug_continue", "args": {"command": "run"}},
{"keys": ["ctrl+shift+f6"], "command": "xdebug_continue", "args": {"command": "step_over"}},
{"keys": ["ctrl+shift+f7"], "command": "xdebug_continue", "args": {"command": "step_into"}},
{"keys": ["ctrl+shift+f8"], "command": "xdebug_continue", "args": {"command": "step_out"}},
{"keys": ["ctrl+shift+f9"], "command": "xdebug_session_start"},
{"keys": ["ctrl+shift+f10"], "command": "xdebug_session_stop"},
{"keys": ["ctrl+shift+f11"], "command": "xdebug_layout", "args": {"keymap" : true}}
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
4697 次 |
| 最近记录: |