subl-comment-snippets
Sublime Text snippets to create fancy PHP, CSS and HTML comments.
Labels snippets
Details
Installs
- Total 9K
- Win 8K
- Mac 401
- Linux 405
| Aug 25 | Aug 24 | Aug 23 | Aug 22 | Aug 21 | Aug 20 | Aug 19 | Aug 18 | Aug 17 | Aug 16 | Aug 15 | Aug 14 | Aug 13 | Aug 12 | Aug 11 | Aug 10 | Aug 9 | Aug 8 | Aug 7 | Aug 6 | Aug 5 | Aug 4 | Aug 3 | Aug 2 | Aug 1 | Jul 31 | Jul 30 | Jul 29 | Jul 28 | Jul 27 | Jul 26 | Jul 25 | Jul 24 | Jul 23 | Jul 22 | Jul 21 | Jul 20 | Jul 19 | Jul 18 | Jul 17 | Jul 16 | Jul 15 | Jul 14 | Jul 13 | Jul 12 | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Windows | 3 | 0 | 5 | 0 | 0 | 0 | 0 | 2 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 2 | 2 | 1 | 0 | 0 | 1 | 1 | 3 | 1 | 1 | 1 | 0 | 3 | 1 | 3 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 4 | 0 |
| Mac | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| Linux | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
Comment-Snippets for Sublime Text
Several snippets to create some fancy PHP, CSS and HTML comments in Sublime Text.
Atom version here: https://atom.io/packages/section-comment-snippets

Comments Examples
HTML Comments
HTML Section
Tab trigger: comm-html-section + tab
HTML Section header
Tab trigger: comm-html-header + tab
HTML Section footer
Tab trigger: comm-html-footer + tab
HTML Comment
Tab trigger: comm-html + tab
C-Style Comments
For languages supporting C-Style comments: PHP, CSS, Javascript, Java…
Section
Tab trigger: comm-section + tab
/*=============================================
= Section comment block =
=============================================*/
/*===== End of Section comment block ======*/
Section Header
Tab trigger: comm-section-header + tab
/*=============================================
= Section comment block =
=============================================*/
Section Footer
Tab trigger: comm-section-footer + tab
/*===== End of Section comment block ======*/
Subsection
Tab trigger: comm-subsection + tab
/*---------- Subsection comment block ----------*/
Simple Comment
Tab trigger: comm + tab
/* Comment */
Block Comment
Tab trigger: comm-block + tab
/**
*
* Block comment
*
*/
Todo Comment
Tab trigger: comm-todo + tab
/**
TODO:
- First todo item
- Second todo item
*/