Welcome to Software Development on Codidact!
Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.
Post History
You can use snippets for this. In the example below, when you type today and trigger completion (usually Ctrl+Space) you will see an option to insert the date by pressing Enter. Snippet code: "to...
Answer
#2: Post edited
- You can use snippets for this. In the example below, when you type `today` and trigger completion (usually Ctrl+Space) you will see an option to insert the date by pressing Enter.
- Snippet code:
- ```json
- "today ISO": {
- // applies everywhere
- "scope": "",
- "prefix": "today",
- "body": [
- "$CURRENT_YEAR-$CURRENT_MONTH-$CURRENT_DATE"
- ],
- "description": "Insert today's date in ISO format"
- }
- ```
- ------
This answer assumes you know how the snippets feature works. If not, see https://code.visualstudio.com/docs/editor/userdefinedsnippets or a separate question on this site.
- You can use snippets for this. In the example below, when you type `today` and trigger completion (usually Ctrl+Space) you will see an option to insert the date by pressing Enter.
- Snippet code:
- ```json
- "today ISO": {
- // applies everywhere
- "scope": "",
- "prefix": "today",
- "body": [
- "$CURRENT_YEAR-$CURRENT_MONTH-$CURRENT_DATE"
- ],
- "description": "Insert today's date in ISO format"
- }
- ```
- ------
- This answer assumes you know how the snippets feature works. If not, see the [official docs on snippets](https://code.visualstudio.com/docs/editor/userdefinedsnippets) or a separate question on this site.
#1: Initial revision
You can use snippets for this. In the example below, when you type `today` and trigger completion (usually Ctrl+Space) you will see an option to insert the date by pressing Enter. Snippet code: ```json "today ISO": { // applies everywhere "scope": "", "prefix": "today", "body": [ "$CURRENT_YEAR-$CURRENT_MONTH-$CURRENT_DATE" ], "description": "Insert today's date in ISO format" } ``` ------ This answer assumes you know how the snippets feature works. If not, see https://code.visualstudio.com/docs/editor/userdefinedsnippets or a separate question on this site.