Created
May 21, 2020 08:55
-
-
Save abhirup-dev/dc3f713564d440e41a43091010a1978a to your computer and use it in GitHub Desktop.
AutoHotkey script to swap Capslock and Escape
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
SetTitleMatchMode 2 | |
#IfWinActive emacs | |
Capslock::Esc | |
Esc::CapsLock | |
#IfWinActive | |
#IfWinActive GVIM | |
Capslock::Esc | |
Esc::CapsLock | |
#IfWinActive | |
#If WinActive("ahk_exe XWin_MobaX.exe") | |
Capslock::Esc | |
Esc::CapsLock | |
#IfWinActive | |
#IfWinActive 127.0.0.1 | |
Capslock::Esc | |
Esc::CapsLock | |
#IfWinActive | |
#IfWinActive JupyterLab | |
Capslock::Esc | |
Esc::CapsLock | |
#IfWinActive | |
#IfWinActive Visual Studio Code | |
Capslock::Esc | |
Esc::CapsLock | |
#IfWinActive | |
#IfWinActive WindowsTerminal | |
Capslock::Esc | |
Esc::CapsLock | |
#IfWinActive | |
#ifwinactive ubuntu | |
capslock::esc | |
esc::capslock | |
#ifwinactive | |
#IfWinActive OpenSSH | |
Capslock::Esc | |
Esc::CapsLock | |
#IfWinActive |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment