subl-comment-snippets
Sublime Text snippets to create fancy PHP, CSS and HTML comments.
Labels snippets
Details
Installs
- Total 8K
- Win 7K
- Mac 367
- Linux 366
Jan 21 | Jan 20 | Jan 19 | Jan 18 | Jan 17 | Jan 16 | Jan 15 | Jan 14 | Jan 13 | Jan 12 | Jan 11 | Jan 10 | Jan 9 | Jan 8 | Jan 7 | Jan 6 | Jan 5 | Jan 4 | Jan 3 | Jan 2 | Jan 1 | Dec 31 | Dec 30 | Dec 29 | Dec 28 | Dec 27 | Dec 26 | Dec 25 | Dec 24 | Dec 23 | Dec 22 | Dec 21 | Dec 20 | Dec 19 | Dec 18 | Dec 17 | Dec 16 | Dec 15 | Dec 14 | Dec 13 | Dec 12 | Dec 11 | Dec 10 | Dec 9 | Dec 8 | Dec 7 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 1 | 0 | 1 | 6 | 4 | 0 | 0 | 3 | 4 | 3 | 2 | 4 | 2 | 1 | 5 | 1 | 3 | 5 | 1 | 1 | 1 | 0 | 2 | 1 | 2 | 2 | 0 | 2 | 5 | 2 | 1 | 1 | 0 | 2 | 3 | 2 | 1 | 1 | 1 | 0 | 1 | 1 | 4 | 1 | 3 |
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 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 4 | 0 | 1 | 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
*/