Changeset 929
- Timestamp:
- 10/03/08 00:53:18 (5 years ago)
- Location:
- windows/autohotkey
- Files:
-
- 4 modified
-
Source/Compose.ahk (modified) (2 diffs)
-
Source/Keys-Neo.ahk (modified) (3 diffs)
-
neo20.ahk (modified) (5 diffs)
-
neo20.exe (modified) (previous)
Legend:
- Unmodified
- Added
- Removed
-
windows/autohotkey/Source/Compose.ahk
r903 r929 31 31 CheckCompUni("<f> <k>", 0xE038) 32 32 CheckCompUni("<f> <t>", 0xE039) 33 CheckCompUni("<l> <c> <k>", 0xE03A) 34 CheckCompUni("<l> <c> <h>", 0xE03B) 33 35 CheckCompUni("<t> <t>", 0xE03C) 36 CheckCompUni("<l> <c> <t>", 0xE03D) 34 37 CheckCompUni("<17F> <i>", 0xE03E) 35 38 CheckCompUni("<17F> <17F>", 0xE03F) … … 352 355 CheckCompUni("<femalesymbol> <malesymbol>", 0x26A4) 353 356 CheckCompUni("<malesymbol> <femalesymbol>", 0x26A5) 357 CheckCompUni("<Tab>", 0x266B) 354 358 CheckCompUni("<underscore> <underscore>", 0x332) 355 359 CheckCompUni("<apostrophe> <space>", 0x27) -
windows/autohotkey/Source/Keys-Neo.ahk
r897 r929 637 637 OutputChar(":", "colon") 638 638 else if (Ebene = 4) 639 OutputChar(" `,", "comma")639 OutputChar("{NumpadDot}", "comma") 640 640 else if (Ebene = 5) 641 641 SendUnicodeChar(0x03B4, "Greek_delta") ; delta … … 1060 1060 1061 1061 *Enter:: 1062 EbeneAktualisieren() 1062 1063 if !lernModus or lernModus_std_Return { 1063 send {Blind}{Enter} 1064 if (Ebene = 4) 1065 send {blind}{NumpadEnter} 1066 else send {blind}{Enter} 1064 1067 DeadKey := "" 1065 1068 CompKey := "" … … 1092 1095 CompKey := "" 1093 1096 } else { 1094 send {blind}{Tab}1097 OutputChar("{Tab}","Tab") 1095 1098 DeadKey := "" 1096 1099 CompKey := "" -
windows/autohotkey/neo20.ahk
r903 r929 1393 1393 OutputChar(":", "colon") 1394 1394 else if (Ebene = 4) 1395 OutputChar(" `,", "comma")1395 OutputChar("{NumpadDot}", "comma") 1396 1396 else if (Ebene = 5) 1397 1397 SendUnicodeChar(0x03B4, "Greek_delta") ; delta … … 1816 1816 1817 1817 *Enter:: 1818 EbeneAktualisieren() 1818 1819 if !lernModus or lernModus_std_Return { 1819 send {Blind}{Enter} 1820 if (Ebene = 4) 1821 send {blind}{NumpadEnter} 1822 else send {blind}{Enter} 1820 1823 DeadKey := "" 1821 1824 CompKey := "" … … 1848 1851 CompKey := "" 1849 1852 } else { 1850 send {blind}{Tab}1853 OutputChar("{Tab}","Tab") 1851 1854 DeadKey := "" 1852 1855 CompKey := "" … … 2194 2197 CheckCompUni("<f> <k>", 0xE038) 2195 2198 CheckCompUni("<f> <t>", 0xE039) 2199 CheckCompUni("<l> <c> <k>", 0xE03A) 2200 CheckCompUni("<l> <c> <h>", 0xE03B) 2196 2201 CheckCompUni("<t> <t>", 0xE03C) 2202 CheckCompUni("<l> <c> <t>", 0xE03D) 2197 2203 CheckCompUni("<17F> <i>", 0xE03E) 2198 2204 CheckCompUni("<17F> <17F>", 0xE03F) … … 2515 2521 CheckCompUni("<femalesymbol> <malesymbol>", 0x26A4) 2516 2522 CheckCompUni("<malesymbol> <femalesymbol>", 0x26A5) 2523 CheckCompUni("<Tab>", 0x266B) 2517 2524 CheckCompUni("<underscore> <underscore>", 0x332) 2518 2525 CheckCompUni("<apostrophe> <space>", 0x27)
