回答編集履歴
1
サンプル追記
test
CHANGED
@@ -7,3 +7,23 @@
|
|
7
7
|
|
8
8
|
|
9
9
|
[Create your own snippets](https://code.visualstudio.com/docs/editor/userdefinedsnippets#_create-your-own-snippets)
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
サンプル記載しておきます(追記)
|
14
|
+
|
15
|
+
```json
|
16
|
+
|
17
|
+
{
|
18
|
+
|
19
|
+
"template scan":{
|
20
|
+
|
21
|
+
"prefix":"scan",
|
22
|
+
|
23
|
+
"body":"Scanner scanner = new Scanner(System.in);"
|
24
|
+
|
25
|
+
}
|
26
|
+
|
27
|
+
}
|
28
|
+
|
29
|
+
```
|