# Sublime Pacakge Control설정
View > Show Console에 아래 입력
import urllib2,os,hashlib; h = '2deb499853c4371624f5a07e27c334aa' + 'bf8c4e67d14fb0525ba4f89698a6d7e1'; pf = 'Package Control.sublime-package'; ipp = sublime.installed_packages_path(); os.makedirs( ipp ) if not os.path.exists(ipp) else None; urllib2.install_opener( urllib2.build_opener( urllib2.ProxyHandler()) ); by = urllib2.urlopen( 'http://packagecontrol.io/' + pf.replace(' ', '%20')).read(); dh = hashlib.sha256(by).hexdigest(); open( os.path.join( ipp, pf), 'wb' ).write(by) if dh == h else None; print('Error validating download (got %s instead of %s), please try manual install' % (dh, h) if dh != h else 'Please restart Sublime Text to finish installation') |
Tools > Command Palette 에 명령을 입력하여 Package 설치 및 검색, 삭제 가능
- Install Pacakge : 패키지를 설치하는 명령
- List Package : 설치된 패키지 목록을 보여준다.
- Remove Pacakage : 패키지를 삭제한다.
유용한 패키지
- Sidebar Enhancements : http://opentutorials.org/module/406/3609
- Braket Highlighter
# Sidebar 설정
Sublime Text의 메뉴의 view > side bar 선택
Sidebar Enhancement(확장기능) 설치 방법 : https://packagecontrol.io/installation
- Click the Preferences > Browse Packages… menu
- Browse up a folder and then into the Installed Packages/ folder
- Download Package Control.sublime-package and copy it into the Installed Packages/ directory
- Restart Sublime Text
- 유료버전에서만 되는 건지... package control에서 검색이 안됨(ST2 기준)
==> 방법 : https://dl.dropboxusercontent.com/u/9303546/SublimeText/SideBarEnhancements.zip
위 링크에서 파일을 다운 받고, 서브라임 켜서 상단 Preferences > Browse Packages 클릭하면
원도우 폴더가 열리는데 그곳에 다운받은 파일 압축을 푸시고 폴더에 붙여넣기 하시면 사이드바가 사용이 가능. (ST2 기준)
# Project 설정
Project > Add Folder to Project를 선택하여 폴더 선택
- 사이드바가 일종의 프로젝트이며 오른쪽이 에디터
# 팁 : 화면 넓게 쓰기
F11 로 화면을 넓게 쓸 수 있으며, View > hide minimap을 선택하면 우측의 minimap이 숨는다.
View > Show console를 선택하면 아래에 파이썬 콘솔이 나타남
참고 : http://opentutorials.org/course/1029/5536
http://opentutorials.org/course/671/3596
'IT Tech > Tools' 카테고리의 다른 글
Wireshark dissector 추가하기 (0) | 2015.04.10 |
---|---|
[펌] Ubuntu - VMware tools 설치 (0) | 2015.04.10 |
Nmap NSE와 wkhtmltopdf 활용 (0) | 2015.01.20 |
IDA + python 스크립트 사용법 (0) | 2015.01.04 |
Pin - A Binary Instrumentation Tool 사용법 (0) | 2014.12.17 |