Last active
November 29, 2024 09:05
-
-
Save SanteriHetekivi/e2e6877378a8d6757fbfb4c2b8fba3b5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; Remap copy Ctrl+C to LeftAlt+C | |
<!c::Send "^c" | |
; Remap paste Ctrl+V to LeftAlt+V | |
<!v::Send "^v" | |
; Remap cut Ctrl+X to LeftAlt+X | |
<!x::Send "^x" | |
; Remap undo Ctrl+Z to LeftAlt+Z | |
<!z::Send "^z" | |
; Remap save Ctrl+S to LeftAlt+S | |
<!s::Send "^s" | |
; Remap find Ctrl+F to LeftAlt+F | |
<!f::Send "^f" | |
; Remap select all Ctrl+A to LeftAlt+A | |
<!a::Send "^a" | |
; Run snipping tool clip with LeftAlt+LeftShift+4 | |
<!<+4::Run "explorer.exe ms-screenclip:" | |
; Remap closing window Shift+F4 to LeftAlt+LeftShift+w | |
<!<+w::Send "^{F4}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment