AutoHotkey इसका सबसे सरल समाधान है। मुझे अपने कीबोर्ड के लिए सही मैपिंग खोजने में थोड़ा समय लगा और मुझे लगा कि इसे साझा करने के लिए यह एक अच्छी जगह है। ( CTRL और SHIFT संयोजन दिखाने के लिए Ilan का धन्यवाद ।)
माय डेल प्रिसिजन 7510 लैपटॉप में होम और एंड बटन समर्पित नहीं है लेकिन इसमें PrtScr और इन्सर्ट बटन ( जैसे यह ) हैं। क्योंकि मैं सामान्य रूप से एक बाहरी कीबोर्ड का उपयोग करता हूं और मैं नियमित रूप से अपनी प्रिंट स्क्रीन कुंजी का उपयोग करता हूं मुझे लैपटॉप कीबोर्ड का उपयोग करते समय प्रिंट स्क्रीन और होम होने के बीच उस बटन को टॉगल करने के लिए एक तरीके की आवश्यकता थी । Iian से उदाहरण पर बिल्डिंग , मैं ओवरराइड को टॉगल करने के लिए Win + Print Screen सेटअप करता हूं ।
; My Dell Precision 7510 laptop does not have dedicated Home and End buttons
; but it does have dedicated PrtScr and Insert buttons.
; This script will override those buttons as Home and End.
; Idea from: http://superuser.com/questions/412761/mini-keyboard-has-no-home-end-keys-how-to-type-them
; Use the Win+Printscreen key to toggle these hotkeys. They are only needed when using the laptop keyboard.
; Note that this script should be loaded after Snagit or other software that overrides the Print Screen key or those programs may fail to map properly.
#Printscreen::
T:=!T
if(T) ; If it's on
{
;--- Map the Printscreen and Insert keys ---
Hotkey, Printscreen, Printscreen, On
Hotkey, Insert, Insert, On
SoundBeep 423, 100
SoundBeep 423, 150
ToolTip, Laptop PrtScr/Insert remapped to Home/End...
Sleep, 1500
ToolTip
;=== Home ===
; Note that MsgBox, ToolTip, and SoundBeep lines are not executing after the first key is mapped. Hmm. BS 7/27/2016
; Home = start of line
Printscreen::Send {Home}
; Ctrl-Home = start of document
^Printscreen::Send {LCtrl down}{Home}{LCtrl up}
; Shift-Home = select to start of line
+Printscreen::Send {LShift down}{Home}{LShift up}
; Ctrl-Shift-Home = select to start of document
^+Printscreen::Send {LCtrl down}{LShift down}{Home}{LShift up}{LCtrl up}
;=== End ===
; End = end of line
Insert::Send {End}
; Ctrl-End = end of document
^Insert::Send {LCtrl down}{End}{LCtrl up}
; Shift-End = select to end of line
+Insert::Send {LShift down}{End}{LShift up}
; Ctrl-Shift-End = select to start of document
^+Insert::Send {LCtrl down}{LShift down}{End}{LShift up}{LCtrl up}
}
else
{
;--- Disable the Printscreen and Insert key mapping ---
Hotkey, Printscreen, Off
Hotkey, Insert, Off
SoundBeep 303, 150
ToolTip, Laptop PrtScr/Insert remapping disabled...
Sleep, 1500
ToolTip
}
Return