Skip to content

Instantly share code, notes, and snippets.

@canalesb93
Last active December 4, 2023 21:43
Show Gist options
  • Save canalesb93/0423171d8d989e54aba5b3a73090cea5 to your computer and use it in GitHub Desktop.
Save canalesb93/0423171d8d989e54aba5b3a73090cea5 to your computer and use it in GitHub Desktop.
TODOs VSCode Snippets
{
"TODO Comment": {
"prefix": "todo",
"body": [
"$LINE_COMMENT TODO: $CURRENT_MONTH/$CURRENT_DATE/$CURRENT_YEAR_SHORT $1"
],
"description": "TODO Comment w/date"
},
"FIXME Comment": {
"prefix": "fixme",
"body": [
"$LINE_COMMENT FIXME: $CURRENT_MONTH/$CURRENT_DATE/$CURRENT_YEAR_SHORT $1"
],
"description": "FIXME Comment w/date"
},
"OPTIMIZE Comment": {
"prefix": "Optimize",
"body": [
"$LINE_COMMENT OPTIMIZE: $CURRENT_MONTH/$CURRENT_DATE/$CURRENT_YEAR_SHORT $1"
],
"description": "OPTIMIZE Comment w/date"
},
"STOPSHIP Comment": {
"prefix": "stopship",
"body": [
"$LINE_COMMENT STOPSHIP: $CURRENT_MONTH/$CURRENT_DATE/$CURRENT_YEAR_SHORT $1"
],
"description": "STOPSHIP Comment w/date"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment