自定义 chrome 开发者工具 javascript 调试器键盘快捷键?
我不敢相信 Google 或 SO 搜索都没有找到明确的答案,甚至没有对此进行太多讨论,但是:
是否可以在 Google Chrome JavaScript 调试器中编辑/自定义键盘快捷键?如果是这样,怎么办?
我习惯了 Eclipse 的 F5/F6/F7/F8 调试器单步进入/越过/退出/恢复键,并希望在 Google Chrome 中具有相同的绑定。 F10/F11 是 OSX 的默认 Expose 键,因此不适合调试器控制。
我对非正统的解决方案持开放态度,例如 Quicksilver/AppleScript。
相关但不太有帮助的页面:
I can't believe that neither a Google or SO search has turned up a definitive answer or even much discussion for this, but:
Is it possible to edit/customize keyboard shortcuts in the Google Chrome JavaScript debugger? if so, how?
I'm used to Eclipse's F5/F6/F7/F8 debugger step into/over/out of/resume keys, and want the same bindings in Google Chrome. F10/F11 are default Expose keys for OSX and therefore not ideal for debugger control.
I'm open to unorthodox solutions, e.g. Quicksilver/AppleScript.
Related, but not-quite-helpful, pages:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(10)
相关:
Addy 发起了一个问题“能够为 DevTools 自定义键盘快捷键/键绑定”:
https://code.google.com/p/chromium/issues/detail?id=174309< /a>
Related:
Addy has started an issue 'Ability to customize keyboard shortcuts/key bindings for DevTools':
https://code.google.com/p/chromium/issues/detail?id=174309
现在有一个实验性设置允许您自定义快捷方式!
单击 DevTools 中的设置按钮:
然后实验,搜索“key”并勾选启用键盘快捷键编辑器将添加快捷键项目:
.png" rel="noreferrer">
您现在可以自定义快捷方式,并且有一个方便的快捷方式您使用 VS Code:
您必须重新加载 DevTools 才能生效。
There's now an experimental setting to allow you to customise shortcuts!
Click on the settings button in DevTools:
Then Experiments, search for "key" and ticking Enable keyboard shortcut editor will add the Shortcuts item:
You can now customise shortcuts and there's a handy one for if you use VS Code:
You'll have to reload DevTools for it to take effect.
我用 Karabiner 做到了这一点。我使用的是全尺寸键盘(F1-F19 键),因此我将它们映射到 F13 到 F16 。这样按键的布局就与 Chrome 中按钮的布局相匹配。键盘映射文件:
I did this with Karabiner. I'm using a full size keyboard (F1-F19 keys) so I mapped them to F13 to F16. This way the layout of the keys matches the layout of the buttons in Chrome. Keymap file:
我的解决方案是使用 Autohotkey,这是我在任何应用程序中用作快捷方式的工具。
我制作并运行这样的 .ahk 脚本:
很简单:仅当 Chrome 浏览器窗口处于活动状态时,覆盖 F2 键并模拟 Ctrl+b,这是切换断点的官方 Chrome 快捷方式。
实际上,我在 Windows 启动时运行 ahk 脚本,因此快捷方式始终处于活动状态。
您可以添加更多快捷方式。您可以使用不同的浏览器或应用程序。
我还无法改进的一件事是仅当浏览器中的 Web 开发人员工具处于活动状态时才侦听快捷方式,也许有一种方法。
My solution is using Autohotkey, a tool that I use for shortcuts in any app.
I make and run an .ahk script like this:
It's simple: only when Chrome browser window is active, override F2 key and simulate Ctrl+b, which is official Chrome shortcut to toggle breakpoint.
I actually run my ahk script when Windows starts, so shortcuts are always active.
You can add more shortcuts. You can use different browser or app.
One thing that I can't improve yet is listening for shortcuts only when web developer tools in browser are active, maybe there's a way.
Chrome 快捷方式管理器对我不起作用,但使用
KeyRemap4MacBook
可以。更多详情请参见:Mac 上的 Google Chrome 开发者工具键盘快捷键自定义< /a>Chrome Shortcut Manager didn't work for me, but using
KeyRemap4MacBook
did. More details here: Google Chrome Developer Tools keyboard shortcut customization on Mac唯一对我有用的就是在操作系统级别禁用快捷方式(或将它们更改为其他内容)。
在 OSX 中,您可以转到
系统偏好设置 >键盘>键盘快捷键
并更改/禁用在 Chrome 中使用所需的快捷键。The only thing that worked for me was to disable the shortcuts at the OS level (or change them to something else).
In OSX, you can go to
System Preferences > keyboard > Keyboard Shortcuts
and change/disable the shortcuts that you need to work in Chrome.受 @jcollum 答案的启发,这里还有另一个 Karabiner private.xml 定义,这个实现了原始问题中的特定 Eclipse 键绑定。另请参阅 apple.stackexchange.com 上的键盘快捷键切换答案。
Inspired by @jcollum's answer, here is yet another Karabiner private.xml definition, this one implementing the specific Eclipse key bindings in the original question. See also keyboard shortcut toggling answer on apple.stackexchange.com.
每个操作系统都有按键映射器,允许覆盖默认的按键组合;这里有一些:
分叉并扩展 Chrome 快捷方式管理器以实现本机功能。
参考
短信
AutoHotKey
xType
自动键
Chrome 快捷方式管理器
There are key mappers for every OS which allow overriding default key combinations; here are a few:
Fork and extend the Chrome Shortcut Manager for native functionality.
References
Texter
AutoHotKey
xType
AutoKey
Chrome Shortcut Manager
这是我的 Autohotkey 脚本,用于映射 Chrome 调试器快捷键
如果您想在现有的 ahk 脚本中包含该代码段,请添加它到脚本的末尾。
Here is my Autohotkey Script for mapping Chrome Debugger Shortkeys
If you want to include the snippet in your existing ahk script, add it to the end of the script.
如果有人使用 Ubuntu,设置全局快捷方式可能是目前最好的解决方案。这对我有用:
安装 xcape (https://github.com/alols/xcape)。对于基于 Debian 的系统,您可以运行:
运行以下命令来映射 ex。 F6 到开发工具快捷方式:
设置您喜欢的快捷方式并将相关命令放入
.bash_profile
以获得永久结果If anybody uses Ubuntu, setting a global shortcut is probably the best solution for the moment. Here's what worked for me:
Install xcape (https://github.com/alols/xcape). For Debian based systems you can run:
Run the following command to map for ex. F6 to the dev tools shortcut:
Set the shortcuts you prefer and put the relative commands in your
.bash_profile
for permanent results