메뉴 건너뛰기

조회 수 3532 추천 수 0 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

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 에서 바꿔주면 되는데

 사용법에 익숙해지기전엔 구글 영문 검색 도움을 받아야하니까 영어메뉴로 쓰는게 좋다.

 

 

 

 


  1. 서버사이 동기화하기 - rsync, mariadb replication

    Date2020.07.07 ByDDART Views2548
    Read More
  2. msinfo 시스템정보 wmic cmd 명령

    Date2020.05.17 ByDDART Views3266
    Read More
  3. Visual Studio Code 에서 Autohotkey 설정

    Date2020.01.21 ByDDART Views3532
    Read More
  4. 우분투 19.04, 19.10, 20.04 으로 업그레이드 하기

    Date2019.12.21 ByDDART Views1578
    Read More
  5. 윈도우 10에서 구글 어시스턴트 명령

    Date2019.09.08 ByDDART Views2103
    Read More
  6. 해외 IP차단

    Date2019.06.12 ByDDART Views2469
    Read More
  7. Fail2Ban 설정하기

    Date2019.06.11 ByDDART Views313777
    Read More
  8. 윈도우 자동화관련 툴

    Date2019.06.01 ByDDART Views7186
    Read More
  9. PHP로 WOL Magic Packet 보내기

    Date2018.10.31 ByDDART Views14052
    Read More
  10. BATCH 문법

    Date2018.10.15 ByDDART Views3983
    Read More
  11. 우분투 16.04 에서 18.04 로 업그레이드하기

    Date2018.10.15 ByDDART Views1944
    Read More
  12. Windows 7, 8.1 에서 Windows 10으로 무료업그레이드하기

    Date2018.10.14 ByDDART Views4982
    Read More
  13. vsftpd 설정

    Date2017.12.11 ByDDART Views2111
    Read More
  14. crontab

    Date2017.09.08 ByDDART Views8377
    Read More
  15. VBA Project 패스워드 보호 제거하기

    Date2016.09.21 ByDDART Views25587
    Read More
  16. 우분투 16.04 ownCloud 9.1.0 설치

    Date2016.08.04 ByDDART Views5466
    Read More
  17. 우분투 16.04 Subversion - SVN서버, SVN+SSH 클라이언트

    Date2016.07.30 ByDDART Views10799
    Read More
  18. 우분투 16.04 FTP, Samba 등 가상디렉토리 추가

    Date2016.07.30 ByDDART Views3540
    Read More
  19. 우분투 16.04 MiniDLNA & BubbleUPnP Server 설치

    Date2016.07.29 ByDDART Views5544
    Read More
  20. 우분투 16.04 하드디스크 추가

    Date2016.07.28 ByDDART Views7238
    Read More
Board Pagination Prev 1 2 3 ... 4 Next
/ 4