code runner 실행 설정

1241 단어
이와 같이https://www.jianshu.com/p/21c99e461ad3여기에 저자가 정리한다.
1. code runner에서 지원하는 사용자 지정 매개 변수
 
Supported customized parameters
Description
$workspaceRoot
현재 프로젝트 디렉토리 경로
$dir
실행할 코드 파일이 있는 디렉터리
$dirWithoutTrailingSlash
실행할 코드 파일이 있는 디렉터리 (꼬리 뒤 크로스바 없음)
$fullFileName
실행할 코드 파일 전체 경로
$fileName
실행할 코드 파일 이름
$fileNameWithoutExt
실행할 코드 파일 이름 (접미사 이름 없음)
$driveLetter
실행할 코드 파일이 있는 문자(Windows 시스템에만 해당)
$pythonPathPython
해석기 경로
 
2. 일반 언어 실행 구성:
{
    "code-runner.executorMap": {
        "javascript": "node",
        "php": "C:\\php\\php.exe",
        "python": "python",
        "perl": "perl",
        "ruby": "C:\\Ruby23-x64\\bin\\ruby.exe",
        "go": "go run",
        "html": "\"C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe\"",
        "java": "cd $dir && javac $fileName && java $fileNameWithoutExt",
        "c": "cd $dir && gcc $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt"
    }
}

좋은 웹페이지 즐겨찾기