Several snippets to create some fancy PHP, CSS and HTML comments in Sublime Text.
Tab trigger: comm-html + tab
<!-- html comment -->Tab trigger: comm + tab
/* Comment */Tab trigger: comm-block + tab
/**
*
* Block comment
*
**/Tab trigger: comm-section + tab
/*=============================================
= Section comment block =
=============================================*/
/*----- End of Section comment block ------*/Tab trigger: comm-section-header + tab
/*=============================================
= Section comment block =
=============================================*/Tab trigger: comm-subsection + tab
/*========== Subsection comment block ==========*/Tab trigger: comm-section-footer + tab
/*----- End of Section comment block ------*/Tab trigger: comm-todo + tab
/**
TODO:
- First todo item
- Second todo item
**/