Created
November 7, 2013 05:12
-
-
Save demun/7349324 to your computer and use it in GitHub Desktop.
서브라임텍스트 관련 팁
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>sublime text tip</title> | |
</head> | |
<body> | |
<h3>Less.sublime-build</h3> | |
<code> | |
{ | |
"cmd": ["$packages\\LESS-build\\dotless.Compiler.exe", "$file", "..\\css/${file_base_name}.css"] | |
} | |
</code> | |
<h3>user settings</h3> | |
<code> | |
[ | |
{ "keys": ["ctrl+shift+c"], "command": "open_in_browser" }, | |
{ "keys": ["ctrl+shift+w"], "command": "toggle_setting", "args": {"setting": "word_wrap"}} | |
] | |
</code> | |
<h3>github 사용하는 방법.</h3> | |
<ul> | |
<li>sublime-github 플러그인 설치</li> | |
<li>명령파렛트 발행: GitHub: Public Gist from Selection</li> | |
<li>블러오기 : GitHub: Open Gist in Editor</li> | |
<li>설정 = name, password 또는 발행시 저장소이름 등</li> | |
</ul> | |
<h3>사이드바에서 Git 사용하는 방법</h3> | |
<ul> | |
<li>git-scm.com 에서 git 설치</li> | |
<li>환경변수에서 path 설정</li> | |
<li>sublimetext 에서 SideBarGit 플러그인 설치, 유저설정에서 git 보이게 수정.</li> | |
<li>git init : git 시작. git commit, git status : 현재 상태, git diff : 파일비교.</li> | |
</ul> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment