在 Windows 7 中禁用 Shift-Windows 键

在 Windows 7 中禁用 Shift-Windows 键

Windows 7 设置了那些 Windows+Shift 键用于将窗口移动到其他屏幕:

Windows logo (Win)+ Shift+→ (Right Arrow)Windows logo (Win)+ Shift+← (Left Arrow) 将窗口移动到双显示器设置的另一侧。

我该如何禁用它?它与 Emacs/org 模式的键冲突,我觉得很烦人。

答案1

答案2

您可以使用自动热键来改变键绑定(以及更多),这样您提到的快捷方式就不起作用了。

为了禁用上述快捷方式,AutoHotkey 脚本如下:

#+Left::Return
#+Right::Return

#分别代表Windows logo (Win)
+、、。Shift
Left/Right← (Left Arrow)→ (Right Arrow)

您只需安装 AutoHotkey,*.ahk使用上述脚本创建(纯文本)文件并将其添加到您的Startup文件夹中。

相关内容