Created
May 14, 2010 19:18
-
-
Save tivac/401535 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<clips name="Mine" scheme="web"> | |
<clip name="HTML page stub" shortcut="html"> | |
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>${1:Page Title}</title> | |
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8"> | |
${2:<!-- CSS -->} | |
</head> | |
<body lang="en-US"> | |
${3:<!-- Content! -->} | |
${4:<!-- JS -->} | |
</body> | |
</html> | |
</clip> | |
<clip name="Script tag" shortcut="js"> | |
<script type="text/javascript" ${1:src=""}>${0}</script> | |
</clip> | |
<clip name="Style tag" shortcut="css"> | |
<link type="text/css" rel="stylesheet" href="${0}" /> | |
</clip> | |
<clip name="YUI JS include" shortcut="yui"> | |
<script type="text/javascript" src="http://yui.yahooapis.com/combo?3.1.1/build/yui/yui-min.js"></script> | |
${0} | |
</clip> | |
<clip name="YUI().use" shortcut="use"> | |
YUI().use("${1:node}", function(Y) { | |
${0} | |
}); | |
</clip> | |
<clip name="console.log" shortcut="log"> | |
console.log(${0}); //TODO: REMOVE DEBUGGING CODE | |
</clip> | |
<clip name="For Loop" shortcut="for"> | |
for(${1:i} = 0, ${2:l} = ${3:something}.length}; ${1} < ${2}; ${1}++) { | |
${0} | |
} | |
</clip> | |
</clips> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment