Sublime Text에서 코딩한 코드를 Command Line으로 수행하고 싶을 경우 Terminal을 hot key로 띄워서 수행 할 수 있다.
- 참조 : Terminal을 띄우기 위한 설정
- Install Package에서 "Terminal"이라고 타입핑하고 설치한다
+ mac : command + shift + p => Install Package => Terminal 입력
// git clone 을 통하여 sublime_terminal을 다운로드 받는다
/Users/xxx/Applications> git clone https://github.com/wbond/sublime_terminal.git
Cloning into 'sublime_terminal'...
Unpacking objects: 100% (99/99), done.
// Sublime Text > Preferences > Package Settings > Terminal > Settings Defaults 에서 iTerm.sh를 설정한다
// iTerm.sh 연결
{
// The command to execute for the terminal, leave blank for the OS default
// On OS X the terminal can be set to iTerm.sh to execute iTerm
"terminal": "/Users/nulpulum/Applications/sublime_terminal/iTerm.sh",
// A list of default parameters to pass to the terminal, this can be
// overridden by passing the "parameters" key with a list value to the args
// dict when calling the "open_terminal" or "open_terminal_project_folder"
// commands
"parameters": []
}
- 소스 코드를 저장하고 ctrl + shift + t 를 클릭하면 코드가 있는 Path로 Terminal이 열린다
<참조>
'Dev Environment > Sublime Text' 카테고리의 다른 글
[Sublime Text 3] 설치하기 (0) | 2013.08.22 |
---|---|
[Sublime Text 2] 단축키 모음 (0) | 2013.06.07 |
[Sublime Text 2] Mac OS X 의 Terminal 에서 바로 수행시키기 (0) | 2013.03.12 |
[Sublime Text 2] Jade, Stylus 플러그인 설치 (0) | 2013.02.02 |
[Sublime Text 2] CoffeeScript 설정하기 (0) | 2013.01.30 |