Autohotkey ctrl + Key == Arrow
我仅在使用 Autohotkey 软件关闭 ctrl 时尝试将箭头键重新映射到 JKIL。
1 2 3 4 | ^i::Up ^k::Down ^j::Left ^l::Right |
问题是当 ctrl Key 被按下时,它会发送 ctrl arrow 搞砸一切。
我想要的是 (ctrl Key == arrow) NOT (ctrl Key == ctrl arrow),这可能吗?
使用来自 http://ahkscript.org
的 AutoHotkey v1.1
这行得通
1 2 3 4 | ^i::send {Up} ^k::send {Down} ^j::send {Left} ^l::send {Right} |
希望对你有帮助