Comment-Snippets
Sublime Text snippets to create fancy PHP, CSS and HTML comments.
Labels snippets
Details
Installs
- Total 112K
- Win 78K
- Mac 20K
- Linux 15K
Feb 26 | Feb 25 | Feb 24 | Feb 23 | Feb 22 | Feb 21 | Feb 20 | Feb 19 | Feb 18 | Feb 17 | Feb 16 | Feb 15 | Feb 14 | Feb 13 | Feb 12 | Feb 11 | Feb 10 | Feb 9 | Feb 8 | Feb 7 | Feb 6 | Feb 5 | Feb 4 | Feb 3 | Feb 2 | Feb 1 | Jan 31 | Jan 30 | Jan 29 | Jan 28 | Jan 27 | Jan 26 | Jan 25 | Jan 24 | Jan 23 | Jan 22 | Jan 21 | Jan 20 | Jan 19 | Jan 18 | Jan 17 | Jan 16 | Jan 15 | Jan 14 | Jan 13 | Jan 12 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 27 | 70 | 79 | 77 | 70 | 46 | 56 | 50 | 70 | 78 | 71 | 64 | 35 | 41 | 41 | 57 | 56 | 52 | 45 | 37 | 29 | 42 | 50 | 50 | 61 | 53 | 33 | 28 | 48 | 59 | 58 | 48 | 64 | 43 | 43 | 57 | 69 | 51 | 57 | 42 | 35 | 38 | 62 | 51 | 64 | 43 |
Mac | 0 | 1 | 2 | 1 | 4 | 2 | 1 | 4 | 3 | 2 | 5 | 3 | 3 | 6 | 5 | 3 | 2 | 3 | 2 | 5 | 1 | 4 | 4 | 3 | 2 | 3 | 4 | 6 | 2 | 1 | 3 | 3 | 4 | 4 | 2 | 4 | 3 | 4 | 5 | 2 | 1 | 2 | 5 | 3 | 3 | 7 |
Linux | 4 | 5 | 2 | 4 | 3 | 4 | 0 | 3 | 6 | 1 | 1 | 5 | 2 | 0 | 3 | 1 | 5 | 4 | 3 | 6 | 0 | 4 | 3 | 3 | 5 | 3 | 1 | 3 | 3 | 1 | 4 | 1 | 3 | 3 | 0 | 3 | 4 | 1 | 2 | 4 | 4 | 4 | 5 | 5 | 0 | 3 |
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
*/