Skip to content

Commit

Permalink
Add new aliases for sysout and syserr snippets
Browse files Browse the repository at this point in the history
Signed-off-by: Hope Hadfield <[email protected]>
  • Loading branch information
hopehadfield committed Oct 25, 2023
1 parent 9e20e13 commit 13e07ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions snippets/server.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"sysout": {
"prefix": ["sysout", "sout"],
"prefix": ["sysout", "sout", "System.out.println()"],
"body": [
"System.out.println($0);"
],
"description": "Print to standard out"
},
"syserr": {
"prefix": ["syserr", "serr"],
"prefix": ["syserr", "serr", "System.err.println()"],
"body": [
"System.err.println($0);"
],
Expand Down

0 comments on commit 13e07ef

Please sign in to comment.