-
-
Save carloseduardosx/5890d3d04a213d567348303b51f9835b to your computer and use it in GitHub Desktop.
Revisions
-
sedm0784 revised this gist
Jan 3, 2018 . No changes.There are no files selected for viewing
-
sedm0784 revised this gist
Jan 3, 2018 . 1 changed file with 0 additions and 136 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -31,209 +31,73 @@ g_ControlRepeatDetected := false return ~*^a:: ~*^b:: ~*^c:: ~*^d:: ~*^e:: ~*^f:: ~*^g:: ~*^h:: ~*^i:: ~*^j:: ~*^k:: ~*^l:: ~*^m:: ~*^n:: ~*^o:: ~*^p:: ~*^q:: ~*^r:: ~*^s:: ~*^t:: ~*^u:: ~*^v:: ~*^w:: ~*^x:: ~*^y:: ~*^z:: ~*^1:: ~*^2:: ~*^3:: ~*^4:: ~*^5:: ~*^6:: ~*^7:: ~*^8:: ~*^9:: ~*^0:: ~*^Space:: ~*^Backspace:: ~*^Delete:: ~*^Insert:: ~*^Home:: ~*^End:: ~*^PgUp:: ~*^PgDn:: ~*^Tab:: ~*^Return:: ~*^,:: ~*^.:: ~*^/:: ~*^;:: ~*^':: ~*^[:: ~*^]:: ~*^\:: ~*^-:: ~*^=:: ~*^`:: ~*^F1:: ~*^F2:: ~*^F3:: ~*^F4:: ~*^F5:: ~*^F6:: ~*^F7:: ~*^F8:: ~*^F9:: ~*^F10:: ~*^F11:: ~*^F12:: g_AbortSendEsc := true return -
sedm0784 revised this gist
Apr 29, 2016 . 1 changed file with 129 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -108,3 +108,132 @@ g_ControlRepeatDetected := false ~*^z:: g_AbortSendEsc := true return ~*^1:: g_AbortSendEsc := true return ~*^2:: g_AbortSendEsc := true return ~*^3:: g_AbortSendEsc := true return ~*^4:: g_AbortSendEsc := true return ~*^5:: g_AbortSendEsc := true return ~*^6:: g_AbortSendEsc := true return ~*^7:: g_AbortSendEsc := true return ~*^8:: g_AbortSendEsc := true return ~*^9:: g_AbortSendEsc := true return ~*^0:: g_AbortSendEsc := true return ~*^Space:: g_AbortSendEsc := true return ~*^Backspace:: g_AbortSendEsc := true return ~*^Delete:: g_AbortSendEsc := true return ~*^Insert:: g_AbortSendEsc := true return ~*^Home:: g_AbortSendEsc := true return ~*^End:: g_AbortSendEsc := true return ~*^PgUp:: g_AbortSendEsc := true return ~*^PgDn:: g_AbortSendEsc := true return ~*^Tab:: g_AbortSendEsc := true return ~*^Return:: g_AbortSendEsc := true return ~*^,:: g_AbortSendEsc := true return ~*^.:: g_AbortSendEsc := true return ~*^/:: g_AbortSendEsc := true return ~*^;:: g_AbortSendEsc := true return ~*^':: g_AbortSendEsc := true return ~*^[:: g_AbortSendEsc := true return ~*^]:: g_AbortSendEsc := true return ~*^\:: g_AbortSendEsc := true return ~*^-:: g_AbortSendEsc := true return ~*^=:: g_AbortSendEsc := true return ~*^`:: g_AbortSendEsc := true return ~*^F1:: g_AbortSendEsc := true return ~*^F2:: g_AbortSendEsc := true return ~*^F3:: g_AbortSendEsc := true return ~*^F4:: g_AbortSendEsc := true return ~*^F5:: g_AbortSendEsc := true return ~*^F6:: g_AbortSendEsc := true return ~*^F7:: g_AbortSendEsc := true return ~*^F8:: g_AbortSendEsc := true return ~*^F9:: g_AbortSendEsc := true return ~*^F10:: g_AbortSendEsc := true return ~*^F11:: g_AbortSendEsc := true return ~*^F12:: g_AbortSendEsc := true return -
sedm0784 revised this gist
Nov 4, 2015 . No changes.There are no files selected for viewing
-
sedm0784 revised this gist
Nov 4, 2015 . No changes.There are no files selected for viewing
-
sedm0784 created this gist
Jan 3, 2013 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,110 @@ g_LastCtrlKeyDownTime := 0 g_AbortSendEsc := false g_ControlRepeatDetected := false *CapsLock:: if (g_ControlRepeatDetected) { return } send,{Ctrl down} g_LastCtrlKeyDownTime := A_TickCount g_AbortSendEsc := false g_ControlRepeatDetected := true return *CapsLock Up:: send,{Ctrl up} g_ControlRepeatDetected := false if (g_AbortSendEsc) { return } current_time := A_TickCount time_elapsed := current_time - g_LastCtrlKeyDownTime if (time_elapsed <= 250) { SendInput {Esc} } return ~*^a:: g_AbortSendEsc := true return ~*^b:: g_AbortSendEsc := true return ~*^c:: g_AbortSendEsc := true return ~*^d:: g_AbortSendEsc := true return ~*^e:: g_AbortSendEsc := true return ~*^f:: g_AbortSendEsc := true return ~*^g:: g_AbortSendEsc := true return ~*^h:: g_AbortSendEsc := true return ~*^i:: g_AbortSendEsc := true return ~*^j:: g_AbortSendEsc := true return ~*^k:: g_AbortSendEsc := true return ~*^l:: g_AbortSendEsc := true return ~*^m:: g_AbortSendEsc := true return ~*^n:: g_AbortSendEsc := true return ~*^o:: g_AbortSendEsc := true return ~*^p:: g_AbortSendEsc := true return ~*^q:: g_AbortSendEsc := true return ~*^r:: g_AbortSendEsc := true return ~*^s:: g_AbortSendEsc := true return ~*^t:: g_AbortSendEsc := true return ~*^u:: g_AbortSendEsc := true return ~*^v:: g_AbortSendEsc := true return ~*^w:: g_AbortSendEsc := true return ~*^x:: g_AbortSendEsc := true return ~*^y:: g_AbortSendEsc := true return ~*^z:: g_AbortSendEsc := true return