ฉันเหมือนแป้นพิมพ์ลัดปิดโปรแกรมใน Mac OS X ซึ่งเป็น+⌘ Qดีและสะดวกสำหรับการวางมือ ใน Windows อย่างไรก็ตามทางลัดที่เทียบเท่าคือAlt+ F4เล็กน้อยที่น่าอึดอัดใจ
มีวิธีการเปลี่ยนแป้นพิมพ์ลัดเริ่มต้นเป็นAlt+ QหรือCtrl+ Qหรือไม่ ฉันใช้ Windows 7
ฉันเหมือนแป้นพิมพ์ลัดปิดโปรแกรมใน Mac OS X ซึ่งเป็น+⌘ Qดีและสะดวกสำหรับการวางมือ ใน Windows อย่างไรก็ตามทางลัดที่เทียบเท่าคือAlt+ F4เล็กน้อยที่น่าอึดอัดใจ
มีวิธีการเปลี่ยนแป้นพิมพ์ลัดเริ่มต้นเป็นAlt+ QหรือCtrl+ Qหรือไม่ ฉันใช้ Windows 7
คำตอบ:
รับAutoHotKey เปิด Notepad และวางต่อไปนี้:
^q::Send !{F4}
return
บันทึกเป็นไฟล์. ahk เรียกใช้แล้วลองใช้งาน หากใช้งานได้ให้ติดไว้ในโฟลเดอร์เริ่มต้นของคุณแล้วคุณก็พร้อมที่จะไป รหัสข้างต้นเพียงแผนที่Ctrl+ Qเพื่อ+AltF4
หากคุณต้องการให้มันเป็นAlt+ Qให้แทนที่^
ด้วย!
หากคุณไม่สามารถรับ AutoHotKey ได้ฉันได้รวบรวมสคริปต์ด้านบนให้คุณและอัปโหลดได้ที่นี่
http://dl.dropbox.com/u/26194020/CtrlQ.exe
ดาวน์โหลดและสนุก
คุณรู้หรือไม่ว่าCtrl+ Wปิดหน้าต่างในแอปพลิเคชันใด ๆ อยู่ใช่ไหม
ในการเปลี่ยน Windows เพื่อให้เหมาะกับผู้ใช้ Mac ดูบทความนี้: คีย์แมปใน Windows
มันมีสคริปต์Autohotkeyที่แมปปุ่ม Windows จำนวนมากกับ Mac ที่เทียบเท่า
หากต้องการสร้างเค้าโครงแป้นพิมพ์ใหม่ให้ดูผู้สร้างเค้าโครงแป้นพิมพ์ Microsoftซึ่งช่วยให้คุณสามารถจัดการคีย์ทั้งหมดและชุดค่าผสมได้
เนื่องจากบทความต้นฉบับหายไปจากเว็บฉันจึงคัดลอกสคริปต์ Autohotkey ด้านล่าง:
;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
#w::^F4
#q::!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
#b::^b
#c::^c
#d::^d
#e::^e
;following won't remap using the normal method
#f::Send {LCtrl down}{f}{LCtrl up}
#g::^g
#h::^h
#i::^i
#j::^j
#k::^k
;#l::Send {LCtrl down}{l}{LCtrl up} ;disabled, I like winkey-L
#m::^m
#n::^n
#o::^o
#p::^p
;#q::^q ;disabled --remapped to alt-F4 instead
#r::^r
#s::^s
#t::^t
#u::^u
#v::^v
;#w::^w ;disabled --remapped to ctrl-F4 instead
#x::^x
#y::^y
#z::^z
#1::^1
#2::^2
#3::^3
#4::^4
#5::^5
#6::^6
#7::^7
#8::^8
#9::^9
#0::^0