#Requires AutoHotkey v2.0 #Include Lib.ahk #NoTrayIcon ;Mit Alt + C wird der aktuell Ordner im Terminal geƶffnet. !c:: { HotIfWinActive "ahk_class CabinetWClass" { WinID := WinGetID("ahk_class CabinetWClass") Path := GetPath(WinID) code := "C:\Users\" . A_UserName . "\Appdata\Local\Programs\Microsoft VS Code\Code.exe" run '"' code '" -n "' Path '"' } Return }