From 780c3fe279ca4700df5d8fc7953a0dd273a50e66 Mon Sep 17 00:00:00 2001 From: m2nlight Date: Wed, 11 Nov 2020 21:51:35 +0800 Subject: [PATCH] fix CapsLock+E --- machotkey.ahk | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/machotkey.ahk b/machotkey.ahk index 9dd4960..44b80a7 100755 --- a/machotkey.ahk +++ b/machotkey.ahk @@ -8,7 +8,7 @@ SetWorkingDir, %A_ScriptDir% global my_name := "MacHotKey" -global my_version := "v0.3.0" +global my_version := "v0.3.1" global my_bit := A_PtrSize * 8 global my_website := "https://github.com/m2nlight/AHKShortcutLikeMac" @@ -205,10 +205,10 @@ CapsLock & A:: Return CapsLock & E:: if GetKeyState("Shift") { - Send ^{End} + Send +{End} return } - Send ^{End} ; Move end (Emacs: CTRL+E) + Send {End} ; Move end (Emacs: CTRL+E) Return CapsLock & Enter::Send {End}{Enter} ; Start new line CapsLock & \::Send {Home}{Enter}{Up} ; Start new line at previous line