如何将Windows搜索快捷方式更改为Ctrl + Ctrl?


Answers:


2

我认为使用注册表项是不可能的,因为控制项是修饰符,而不是ASCII字符。

我会使用类似AutoHotKey这样的功能。以下脚本将在AutoHotKey中执行此操作(假定默认组合键为Control + Shift + f):

~ctrl::
if(a_PriorHotKey <> "~ctrl" or A_TimeSincePriorHotkey > 400)
{
    KeyWait, ctrl
    return
}
WinActivate, Program Manager
send, #+f
return
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.