diff options
Diffstat (limited to 'windows/autohotkey/Source')
-rw-r--r-- | windows/autohotkey/Source/All.ahk | 2 | ||||
-rw-r--r-- | windows/autohotkey/Source/Compose.ahk | 2 | ||||
-rw-r--r-- | windows/autohotkey/Source/Global-Part.ahk | 2 | ||||
-rw-r--r-- | windows/autohotkey/Source/Keys-Neo.ahk | 2 | ||||
-rw-r--r-- | windows/autohotkey/Source/Keys-Qwert-to-Neo.ahk | 2 | ||||
-rw-r--r-- | windows/autohotkey/Source/Methods-Layers.ahk | 3 | ||||
-rw-r--r-- | windows/autohotkey/Source/Methods-Lights.ahk | 2 | ||||
-rw-r--r-- | windows/autohotkey/Source/Methods-ScreenKeyboard.ahk | 2 | ||||
-rw-r--r-- | windows/autohotkey/Source/Methods-Unicode.ahk | 2 | ||||
-rw-r--r-- | windows/autohotkey/Source/Warning.ahk | 2 |
10 files changed, 21 insertions, 0 deletions
diff --git a/windows/autohotkey/Source/All.ahk b/windows/autohotkey/Source/All.ahk index 61eaedb..cd5ef3e 100644 --- a/windows/autohotkey/Source/All.ahk +++ b/windows/autohotkey/Source/All.ahk @@ -14,3 +14,5 @@ #Include %a_scriptdir%\Compose.ahk
#Include %a_scriptdir%\Methods-Unicode.ahk
#Include %a_scriptdir%\Methods-ScreenKeyboard.ahk
+
+
diff --git a/windows/autohotkey/Source/Compose.ahk b/windows/autohotkey/Source/Compose.ahk index 3d2e3df..2a6dca2 100644 --- a/windows/autohotkey/Source/Compose.ahk +++ b/windows/autohotkey/Source/Compose.ahk @@ -2825,3 +2825,5 @@ CheckCompUni("<acute> <z>", 0x17A) CheckCompUni("<c> <Z>", 0x17D)
CheckCompUni("<c> <z>", 0x17E)
}
+
+
diff --git a/windows/autohotkey/Source/Global-Part.ahk b/windows/autohotkey/Source/Global-Part.ahk index 6b7b59d..7735edc 100644 --- a/windows/autohotkey/Source/Global-Part.ahk +++ b/windows/autohotkey/Source/Global-Part.ahk @@ -335,3 +335,5 @@ return exitprogram:
exitapp
return
+
+
diff --git a/windows/autohotkey/Source/Keys-Neo.ahk b/windows/autohotkey/Source/Keys-Neo.ahk index baf8db0..d7de34a 100644 --- a/windows/autohotkey/Source/Keys-Neo.ahk +++ b/windows/autohotkey/Source/Keys-Neo.ahk @@ -1151,3 +1151,5 @@ neo_tab: DeadKey := ""
CompKey := ""
} return
+
+
diff --git a/windows/autohotkey/Source/Keys-Qwert-to-Neo.ahk b/windows/autohotkey/Source/Keys-Qwert-to-Neo.ahk index 1abd9dd..0b1e19e 100644 --- a/windows/autohotkey/Source/Keys-Qwert-to-Neo.ahk +++ b/windows/autohotkey/Source/Keys-Qwert-to-Neo.ahk @@ -237,3 +237,5 @@ VK09SC00F::goto neo_tab *VK2DSC052::goto neo_Numpad0 ; NumPadIns
*VK6ESC053:: ; NumPadDot
*VK2ESC053::goto neo_NumpadDot ; NumPadIns
+
+
diff --git a/windows/autohotkey/Source/Methods-Layers.ahk b/windows/autohotkey/Source/Methods-Layers.ahk index 133be91..c59ccb7 100644 --- a/windows/autohotkey/Source/Methods-Layers.ahk +++ b/windows/autohotkey/Source/Methods-Layers.ahk @@ -126,3 +126,6 @@ IsMod4Pressed() else
return (GetKeyState("<","P") or GetKeyState("SC138","P") or GetKeyState("ä","P"))
}
+
+
+
diff --git a/windows/autohotkey/Source/Methods-Lights.ahk b/windows/autohotkey/Source/Methods-Lights.ahk index 62c2687..861f4ae 100644 --- a/windows/autohotkey/Source/Methods-Lights.ahk +++ b/windows/autohotkey/Source/Methods-Lights.ahk @@ -104,3 +104,5 @@ InsertIntegerLED(pInteger, ByRef pDest, pOffset = 0, pSize = 4) { Loop %pSize% ; Copy each byte in the integer into the structure as raw binary data.
DllCall("RtlFillMemory", "UInt", &pDest + pOffset + A_Index-1, "UInt", 1, "UChar", pInteger >> 8*(A_Index-1) & 0xFF)
}
+
+
diff --git a/windows/autohotkey/Source/Methods-ScreenKeyboard.ahk b/windows/autohotkey/Source/Methods-ScreenKeyboard.ahk index 139f724..0ba32f6 100644 --- a/windows/autohotkey/Source/Methods-ScreenKeyboard.ahk +++ b/windows/autohotkey/Source/Methods-ScreenKeyboard.ahk @@ -154,3 +154,5 @@ ToggleAlwaysOnTop: alwaysOnTop = 1
}
Return
+
+
diff --git a/windows/autohotkey/Source/Methods-Unicode.ahk b/windows/autohotkey/Source/Methods-Unicode.ahk index 161e01c..4918940 100644 --- a/windows/autohotkey/Source/Methods-Unicode.ahk +++ b/windows/autohotkey/Source/Methods-Unicode.ahk @@ -31,3 +31,5 @@ SendUnicodeChar(charCode1, charCode2) { EncodeInteger(ref,val) {
DllCall("ntdll\RtlFillMemoryUlong","Uint",ref,"Uint",4,"Uint",val)
}
+
+
diff --git a/windows/autohotkey/Source/Warning.ahk b/windows/autohotkey/Source/Warning.ahk index b22ea65..559ce26 100644 --- a/windows/autohotkey/Source/Warning.ahk +++ b/windows/autohotkey/Source/Warning.ahk @@ -41,3 +41,5 @@ Das war die letzte WARNUNG, ich hoffe nur, dass Sie wirklich wissen, was Sie hier tun wollen ...
*******************************************
*/
+
+
|