【发布时间】:2013-06-28 13:08:45
【问题描述】:
基本上,
它的灵感来自 Vim 我想使用一个键(例如 Alt、F1)组合(+I J K L)来映射到箭头键
Autohotkey 中已经做了什么
Ralt & j::send{Left}
Ralt & k::send{Right}
... 现在我把 Alt+I 当作 up 等等,这对我来说很好但是当你按下时问题就来了
Ralt+Shift+j (Suppose to select the last charater)
Ralt+Ctrl+j (Suppose to move a caramel text)
这种组合不起作用,它只是被覆盖为基本的向左移动光标
即使我在GetKeyState 中使用 if/while 语句,它也不起作用
if GetKeyState("Shift","P")
Ralt+j::send +{Left}
This kind of stuff didn't work
对此有什么想法吗?这将使编码非常高效,而无需移动右手。
提前致谢。
【问题讨论】:
标签: vim keyboard-shortcuts autohotkey