相关疑难解决方法(0)

如何仅禁用某些 Windows 10 全局快捷方式以在第三方应用程序中使用它们?

1. 简要

我只想禁用一些 Windows 10 默认全局热键,以使用此热键运行 Sublime Text 命令。



2. 细节

我有 Windows 32 位 10.0.14393。在 Windows 10 中,我们有许多本机热键

1.我想禁用

例如,我想禁用自定义热键Win+KWin+HCtrl+Win+P

2.我不想禁用

但是,例如,我不想禁用Win+DWin+R热键。我经常使用这些热键。

3. Sublime Text 键盘映射部分

{
    "keys": ["super+k"],
    "command": "paste"
},
Run Code Online (Sandbox Code Playgroud)

3.没有帮助

1.自动热键覆盖

我的代码:

#k::return
Run Code Online (Sandbox Code Playgroud)

Win+K global hotkey is disabled for me, but my Sublime Text command paste doesn't run too.

2. AutoHotkey overwrite global Windows hotkeys to hotkey of application

My code:

#IfWinActive ahk_class …
Run Code Online (Sandbox Code Playgroud)

windows keyboard-shortcuts autohotkey sublime-text-3 windows-10

13
推荐指数
1
解决办法
5400
查看次数