patleeman / VSNotes

Simple VS Code extension for plain text note taking.
https://marketplace.visualstudio.com/items?itemName=patricklee.vsnotes
MIT License
174 stars 33 forks source link

Feature: choose a snippet on newNote #33

Closed michaelgenesini closed 5 years ago

michaelgenesini commented 5 years ago

What do you think about a question after 'newNote' prompt that ask you which snippet to execute?

I'd like to create some custom snippet in VSCode to use as template for my notes for example:

  "note_standup": {
    "prefix": "vsnote_standup",
    "body": [
      "---",
      "tags:",
      "\t- standup",
      "---",
      "\n#Standup: $CURRENT_DATE/$CURRENT_MONTH/$CURRENT_YEAR",
    ],
    "description": "Stand Up Meeting Template Note"
  }

What do you think guys?

Thanks 🤝 ❤️