1. https://code.visualstudio.com/ 다운받기 (무료)
2. Ctrl+Shift+X 를 눌러 extensions 에서 Autohotkey 와 Code Runner 를 검색해 설치하고 Enable 시켜준다.
3. F1 를 눌러 Open Settings (JSON) 을 선택해 settings.json 을 열어
다음과 같이 설정해준다.
{ "[ahk]": { "files.encoding": "utf8", }, "code-runner.executorMap": { "ahk": "\"C:\\Program Files\\AutoHotkey\\AutoHotkey.exe\"" }, "code-runner.executorMapByFileExtension": { ".ahk": "\"C:\\Program Files\\AutoHotkey\\AutoHotkey.exe\"" }, // 터미널 윈도우 UTF-8설정 "terminal.integrated.shellArgs.windows": [ "-NoExit", "/c", "chcp.com 65001" ], }
4. F1을 열어 Open Keyboard Shortcuts (JSON) 을 선택해 keybindings.json을 열어 F5, F6 에 대한 단축키 설정해준다.
// Place your key bindings in this file to override the defaults [ { "key": "f5", "command": "code-runner.run","when": "editorTextFocus && editorLangId == 'ahk'"}, { "key": "f6", "command": "code-runner.stop" }, ]
5. 출력윈도우, 터미널 윈도우에서 한글 깨짐문제등 한글사용과 관련 번거로운일 발생안하게 하려면 모든 코드를 UTF8로 저장하고
터미널 코드페이지를 65001 UTF-8로 맞춰주는게 좋다.
6. 메뉴표시언어를 한글로 바꾸는건 F1을 눌러 configure display language 에서 바꿔주면 되는데
사용법에 익숙해지기전엔 구글 영문 검색 도움을 받아야하니까 영어메뉴로 쓰는게 좋다.