|
Trigger | Content |
---|---|
com-css-basic ⇥ |
CSS Basic Comment |
com-css-section ⇥ |
CSS Section Comment |
com-css-sub ⇥ |
CSS Sub-Section Comment |
com-css-long ⇥ |
CSS Long Comment |
com-scss-basic ⇥ |
SCSS Basic Comment |
com-scss-section ⇥ |
SCSS Section Comment |
com-scss-sub ⇥ |
SCSS Sub-Section Comment |
com-scss-long ⇥ |
SCSS Long Comment |
The ⇥ means the Tab key.
Examples
Basic Comment
- CSS
/* Basic Comment */
- SCSS
// Basic Comment
Section Comment
- CSS
/* ==========================================================================
Section Comment Block
========================================================================== */
- SCSS
// ==========================================================================
// Section Comment Block
// ==========================================================================
Sub-Section Comment
- CSS
/* Sub-section Comment Block
========================================================================== */
- SCSS
//
// Sub-section Comment Block
//==========================================================================
Long Comment
- CSS
/**
* Short description using Doxygen-style comment format
*
* The first sentence of the long description starts here and continues on this
* line for a while finally concluding here at the end of this paragraph.
*
* The long description is ideal for more detailed explanations and
* documentation. It can include example HTML, URLs, or any other information
* that is deemed necessary or useful.
*
* @tag This is a tag named 'tag'
*
* TODO: This is a todo statement that describes an atomic task to be completed
* at a later date. It wraps after 80 characters and following lines are
* indented by 2 spaces.
*/
- SCSS
//
// Short description using Doxygen-style comment format
//
// The first sentence of the long description starts here and continues on this
// line for a while finally concluding here at the end of this paragraph.
//
// The long description is ideal for more detailed explanations and
// documentation. It can include example HTML, URLs, or any other information
// that is deemed necessary or useful.
//
// @tag This is a tag named 'tag'
//
// TODO: This is a todo statement that describes an atomic task to be completed
// at a later date. It wraps after 80 characters and following lines are
// indented by 2 spaces.
//
Contributing
If you are interested in helping contribute, please take a look at our contribution guidelines and open an issue or pull request.
Changelog
See CHANGELOG for a human-readable history of changes.
License
Distributed under the MIT License. See LICENSE for more information.