Skip to content

Instantly share code, notes, and snippets.

@gwerbin
Created November 16, 2014 17:53
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 gwerbin/bf66c0fbcac7999e8df3 to your computer and use it in GitHub Desktop.
Save gwerbin/bf66c0fbcac7999e8df3 to your computer and use it in GitHub Desktop.
Sublime Text 3 basic HTML system
{
"cmd": ["ls -l *.html"],
"shell": true,
"working_dir": "${project_path:${folder}}",
"selector": ["source.html", "source.javascript", "source.css"],
"osx": {
"cmd": ["open ${file_base_name}.html"],
"shell": true
},
"windows": {
"cmd": ["start ${file_base_name}.html"],
"shell": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment