Created
September 3, 2022 09:17
-
-
Save tgzw/a20d8e99777fb37e18130126f7d91771 to your computer and use it in GitHub Desktop.
C vscode snippet to add a header documentation section with the filename, your name and the current date
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "Documentation section": { | |
| "prefix": "/*doc", | |
| "body": [ | |
| "/*", | |
| " $TM_FILENAME_BASE", | |
| " Author: tgzw", | |
| " Date : $CURRENT_YEAR-$CURRENT_MONTH-${CURRENT_DATE}", | |
| "*/" | |
| ], | |
| "description": "Brief documentation section" | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment