Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save b6pzeusbc54tvhw5jgpyw8pwz2x6gs/fb0b45f075361fc2ef91218dc1862ee9 to your computer and use it in GitHub Desktop.
Save b6pzeusbc54tvhw5jgpyw8pwz2x6gs/fb0b45f075361fc2ef91218dc1862ee9 to your computer and use it in GitHub Desktop.
Windows auto hot key on VS Code for Mac User
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
;https://previous-on-johnpark82.tistory.com/2460791
;shift-space 한영변환. 하드웨어 키보드 레이아웃이 "한글 키보드(103/106키)" 이어야한다.
+space::Send, {vk15sc138}
; ! Alt
; # Win
; + Shift
; ^ Control
^WheelDown::return
^WheelUp::return
#IfWinActive, ahk_exe Code.exe
; Make Win + key work with cmd (windows) key
$#p::Send ^p
$#+p::Send ^+p
$#a::Send #!^a
$#c::Send #!^c
$#v::Send #!^v
$#x::Send #!^x
$#.::Send #!^.
$#b::Send #!^b
$#f::Send #!^f
$#z::Send #!^z
$#+z::Send #!^+z
$#s::Send ^s
$#d::Send !+d
$#w::Send !+w
#IfWinNotActive, ahk_exe Code.exe
$#a::Send ^a
$#c::Send ^c
$#x::Send ^x
$#v::Send ^v
$#z::Send ^z
$#+z::Send ^+z
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment