Skip to content

Instantly share code, notes, and snippets.

@bemoregt
Forked from demun/index.html
Created June 28, 2016 02:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bemoregt/28e3f522d1de0cd4e6cf2a099229aad4 to your computer and use it in GitHub Desktop.
Save bemoregt/28e3f522d1de0cd4e6cf2a099229aad4 to your computer and use it in GitHub Desktop.
서브라임텍스트 관련 팁
<!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