Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How to add timestamp and multiple choice variables to Blueprint? #70

Open
SeaDude opened this issue May 21, 2019 · 1 comment
Open

How to add timestamp and multiple choice variables to Blueprint? #70

SeaDude opened this issue May 21, 2019 · 1 comment

Comments

@SeaDude
Copy link

SeaDude commented May 21, 2019

Hello,
I reallly like your Extension!

I use snippets a lot to insert timestamps and have even created some snippets that allow me to choose from multiple choices.

Question:

  • How can I integrate the timestamp and multiple choice variables shown below into Blueprint so that when I create a new project, these options are chosen during creation?

Example of a snippet using date timestamp:

{
        "New_Meeting": {
            "prefix": "New_M",
            "scope": "markdown",
            "body": [
                "# Meeting: ${1:Enter Meeting Title}",
                " ",
                "${CURRENT_DAY_NAME}, ${CURRENT_MONTH_NAME}, ${CURRENT_DATE}, ${CURRENT_YEAR}, ${CURRENT_HOUR}:${CURRENT_MINUTE}",
                " ",
                "## Called By",
                " ",
                "- ${2:Enter Name}",
                " ",
                "### Attendees",
                " ",
                "- ${3:Enter Name}",
                "- ${4:Enter Name}",
                "- ${5:Enter Name}",
                " ",
                "### Next Steps",
                " ",
                "---",
                " ",
                "### Agenda",
                " ",
                "### Notes",
                " ",
                "- $0"
            ],
            "description": "New Meeting"
        }
}

Example of snippet using multiple choice:

{
    "Front_Matter": {
            "prefix": "Front_M",
            "scope": "markdown",
            "body": [
                "---"
                "Author: This Guy",
                "Title: ${1:Enter Title}",
                "Created: ${CURRENT_DAY_NAME}, ${CURRENT_MONTH_NAME}, ${CURRENT_DATE}, ${CURRENT_YEAR}, ${CURRENT_HOUR}:${CURRENT_MINUTE}",
                "Last Updated: ",
                "Category: ${2:Enter Category}",
                "Classification: ${3| CONFIDENTIAL, OPERATIONALLY SENSITIVE, FOR INTERNAL USE ONLY, COVERED BY NDA, DO NOT COPY NOR DISTRIBUTE WITHOUT PERMISSION, PUBLIC|}",
                "Tags: ${4: Enter Tags}",
                "---",
                " ",
                "# $0"
            ],
            "description": "New Front Matter"
}

Thank you!

@reesemclean
Copy link
Owner

reesemclean commented May 21, 2019 via email

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants