카테고리 없음
[Editor] Sublime Text editor 3
반응형
1. project 만들기
1) 특정 directory를 째로 drag-and-drop
2) 혹은
toolbar에서
Project -> add folder to project
3) project 저장
toolbar에서
project -> save project as
4) 다른 directory 추가
{
"folders":
[
{
"path": ".",
"name":"coding practice",
"file_exclude_patterns":[
".git*",
"*.a",
"*.so"
],
"folder_exclude_patterns":[
"doc"
]
},
{
"path":"../other_directory"
}
]
}
4) 파일 제외
file_exclude_patterns 사용
{
"folders":
[
{
"path": ".",
"name":"coding practice",
"file_exclude_patterns":[
".git*",
"*.a",
"*.so"
],
"folder_exclude_patterns":[
"doc"
]
}
]
}
5) 폴더 제외
folder_exclude_patterns 사용
{
"folders":
[
{
"path": ".",
"name":"coding practice",
"file_exclude_patterns":[
".git*",
"*.a",
"*.so"
],
"folder_exclude_patterns":[
"doc"
]
}
]
}
6) 프로젝트 이름 지정
{
"folders":
[
{
"path": ".",
"name":"coding practice",
"file_exclude_patterns":[
".git*",
"*.a",
"*.so"
],
"folder_exclude_patterns":[
"doc"
]
}
]
}
2. 찾기
1) 전체에서 찾기
shift + ctrl + f
2) file 내에서 찾기
ctrl + f
3. 어디든 가기 (go to anywhere)
1) file 이동
ctrl + p --> file name 입력
2) symbol 이동 (file 내)
ctrl + p --> @symbol
3) 특정 단어 이동
ctrl + p --> #word
4) line 이동
ctrl + p --> :line
ex. :100 <-- 100 line으로 이동
5) file + word 이동
ctrl + p --> file_name # word
4. command palette
마우스 대신 keyboard로 명령을 입력해서 실행하는 도구
shift + ctrl + p
많은 기능이 listing 됨 (찾아보고 실행 가능)
1) package control
: plug-in
SublimeText3 부터는 git 방식으로 설치
(package control은 2까지 사용 가능)
아래 site로 이동해서
guide대로 설치 (ctrl + ` 후 python code 입력)
http://wbond.net/sublime_packages/package_control/installation#ST3
shift + ctrl + p --> pcon
2) 유용한 packages
SublimeText3 기준
Shift + Ctrl + P
Install Package
BracketHighlighter
Theme - Soda
RailsCasts Theme
Quick File Creator
AdvancedNewFile
Emmet
SublimeCodeIntel
반응형
댓글