-
Notifications
You must be signed in to change notification settings - Fork 5
/
Navigation Keys.ahk
29 lines (25 loc) · 1.23 KB
/
Navigation Keys.ahk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; ;;
;; Unofficial Apple Wireless Keyboard Support ;;
;; http://code.google.com/p/uawks/ ;;
;; ;;
;; Version 2008.09.17 ;;
;; ;;
;; by Brian Jorgensen ;;
;; (based on work by Leon, Veil and Micha) ;;
;; ;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; {Apple Fn Key}-{Arrow Keys} --> {Home, End, PgUp, PgDn}
$*Left::FnKey("{Left}", "{Home}")
$*Right::FnKey("{Right}", "{End}")
$*Up::FnKey("{Up}", "{PgUp}")
$*Down::FnKey("{Down}", "{PgDn}")
;; {Control}-{Backquote} --> {Control}-{Shift}-{Tab}
^`::
SetKeyDelay, -1
if (RemapControlBackquote) {
Send, ^+{Tab}
} else {
Send, ^`
}
Return