使用 AutoHotKey 将 Shift + Ctrl 重新映射到 Shift + Alt?

使用 AutoHotKey 将 Shift + Ctrl 重新映射到 Shift + Alt?

AutoHotKey 是否有办法将功能Shift+ Ctrl+箭头(突出显示左侧/右侧的所有内容)重新映射到Shift+ Alt+

因为我是用 Mac 操作的,所以我习惯将 CMD 按钮放在空格键旁边,而且我更喜欢这样。

答案1

; "LShift + LAlt + Left" to "Shift + Ctrl  + Left"
<+<!Left:: Send {Ctrl Down}{Shift Down}{Left}{Shift Up}{Ctrl Up}

; "LShift + LAlt + Right" to "Shift + Ctrl  + Right"
<+<!Right:: Send {Ctrl Down}{Shift Down}{Right}{Shift Up}{Ctrl Up}
  • “<+” 是 LShift 的修饰符号,“<"!” 是 LAlt 键的修饰符号。
  • 修饰符号仅用于组合键中以修饰其他键(在本例中为左箭头键和右箭头键)。
  • 系统或程序中的所有其他 LShift + LAlt + 键组合(如果有)保持不变。

https://autohotkey.com/docs/commands/Send.htm

相关内容