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.
1 answer
+2
−0
Works for me
The following users marked this post as Works for me:
User | Comment | Date |
---|---|---|
matthewsnyder | (no comment) | Oct 3, 2023 at 17:50 |
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:
"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 or a separate question on this site.
0 comment threads