0% found this document useful (0 votes)
42 views2 pages

Key Remaps for Boot Camp Users

This Autohotkey script remaps keys on an Apple keyboard used with Boot Camp to mimic keyboard shortcuts in Mac OS X. It remaps the Alt/Option keys to behave like the Command key for deleting words or lines, moving cursor, and closing windows. It also remaps the Command key to act as the Control key for letters, numbers and common keys like Cut, Copy, Paste. The script allows Apple laptop users running Windows to have a more native Mac keyboard experience.

Uploaded by

Finnian Smith
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
42 views2 pages

Key Remaps for Boot Camp Users

This Autohotkey script remaps keys on an Apple keyboard used with Boot Camp to mimic keyboard shortcuts in Mac OS X. It remaps the Alt/Option keys to behave like the Command key for deleting words or lines, moving cursor, and closing windows. It also remaps the Command key to act as the Control key for letters, numbers and common keys like Cut, Copy, Paste. The script allows Apple laptop users running Windows to have a more native Mac keyboard experience.

Uploaded by

Finnian Smith
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

';Autohotkey script

;John Walker, 2010-11-25


;http://www.inertreactants.com
;Feel free to reuse, edit and redistribute
;Key remaps for Apple users using boot camp
;(with an Apple notebook or Keyboard)

;following section remaps alt-delete keys to mimic OSX


;command-delete deletes whole line

#BS::Send {LShift down}{Home}{LShift Up}{Del}

;alt-function-delete deletes next word


!Delete::Send {LShift down}{LCtrl down}{Right}{LShift Up}{Lctrl up}{Del}

;alt-delete deletes previous word


!BS::Send {LShift down}{LCtrl down}{Left}{LShift Up}{Lctrl up}{Del}

;following section mimics command-q and command-w


;behaviour to close windows
;note these had to be disabled below for the
;command to ctrl key remaps
#::^F4
#'::!F4

;following section remaps alt-arrow and command-arrow


;keys to mimic OSX behaviour
#Up::Send {Lctrl down}{Home}{Lctrl up}
#Down::Send {Lctrl down}{End}{Lctrl up}
#Left::Send {Home}
#Right::Send {End}
!Up::Send {Home}
!Down::Send {End}
!Left::^Left
!Right::^Right

;following section remaps command key to control key


;affects all number and letter keys
;note that some keys, like winkey-l and winkey-d
;need to be remapped a differeny way
;otherwise autohotkey will not take over
#a::^a
#x::^b
#j::^c
#e::^d
#u::^e
;following won't remap using the normal method
#u::Send {LCtrl down}{f}{LCtrl up}
#i::^g
#d::^h
#c::^i
#h::^j
#t::^k
;#n::Send {LCtrl down}{l}{LCtrl up} ;disabled, I like winkey-L
#m::^m
#b::^n
#r::^o
#l::^p
;#'::^q ;disabled --remapped to alt-F4 instead
#p::^r
#o::^s
#y::^t
#g::^u
#k::^v
;#,::^w ;disabled --remapped to ctrl-F4 instead
#q::^x
#f::^y
#;::^z
#1::^1
#2::^2
#3::^3
#4::^4
#5::^5
#6::^6
#7::^7
#8::^8
#9::^9
#0::^0

You might also like