Skip to content

Instantly share code, notes, and snippets.

@abhirup-dev
Created May 21, 2020 08:55
Show Gist options
  • Save abhirup-dev/dc3f713564d440e41a43091010a1978a to your computer and use it in GitHub Desktop.
Save abhirup-dev/dc3f713564d440e41a43091010a1978a to your computer and use it in GitHub Desktop.
AutoHotkey script to swap Capslock and Escape
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