質問編集履歴
5
コードを追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -51,3 +51,35 @@
|
|
51
51
|
|
52
52
|
|
53
53
|
```
|
54
|
+
|
55
|
+
|
56
|
+
|
57
|
+
###実行しているのは、以下のシンプルなコードです。
|
58
|
+
|
59
|
+
```test.c
|
60
|
+
|
61
|
+
#include <stdio.h>
|
62
|
+
|
63
|
+
|
64
|
+
|
65
|
+
int main(void)
|
66
|
+
|
67
|
+
{
|
68
|
+
|
69
|
+
printsample();
|
70
|
+
|
71
|
+
return 0;
|
72
|
+
|
73
|
+
}
|
74
|
+
|
75
|
+
|
76
|
+
|
77
|
+
void printsample(void)
|
78
|
+
|
79
|
+
{
|
80
|
+
|
81
|
+
printf("hello!\n");
|
82
|
+
|
83
|
+
}
|
84
|
+
|
85
|
+
```
|
4
指摘を元に記述を訂正
test
CHANGED
File without changes
|
test
CHANGED
@@ -2,13 +2,29 @@
|
|
2
2
|
|
3
3
|
|
4
4
|
|
5
|
-
|
5
|
+
C Auto Prototypesという拡張機能を使いたいのですが、うまく機能しません。
|
6
|
+
|
7
|
+
|
8
|
+
|
9
|
+
[C Auto Prototypes](https://marketplace.visualstudio.com/items?itemName=Molitany.c-auto-prototypes&ssr=false#overview)
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
下記の記載に従って、hotkeyを押すのですが、実行されません。
|
14
|
+
|
15
|
+
|
16
|
+
|
17
|
+
> Use the hotkey alt+shift+Q to auto generate functions to the top of the file. Or if there is a header with the same name it will take everything above main and merge with the header.
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
|
22
|
+
|
23
|
+
|
6
24
|
|
7
25
|
なにか他の拡張機能と競合しているのか、そもそも現在のVSCodeのバージョンに合っていない拡張機能なのか、調べたいのですが、やり方がわかりません。
|
8
26
|
|
9
27
|
|
10
|
-
|
11
|
-
[C Auto Prototypes](https://marketplace.visualstudio.com/items?itemName=Molitany.c-auto-prototypes&ssr=false#overview)
|
12
28
|
|
13
29
|
|
14
30
|
|
3
取得できたログを追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -17,3 +17,21 @@
|
|
17
17
|
既存の拡張機能のデバッグや、エラーの確認などする方法はございますでしょうか。
|
18
18
|
|
19
19
|
ご存じの方いらっしゃいましたら教えていただけますと幸いです。
|
20
|
+
|
21
|
+
|
22
|
+
|
23
|
+
2020/03/28 20:13 加筆
|
24
|
+
|
25
|
+
頂いたアドバイスを元にログを見つけることができましたが、何が動かない原因になっているのかわかりませんでした。
|
26
|
+
|
27
|
+
|
28
|
+
|
29
|
+
```
|
30
|
+
|
31
|
+
[2020-03-28 20:03:57.516] [exthost] [info] ExtensionService#_doActivateExtension Molitany.c-auto-prototypes {"startup":false,"extensionId":{"value":"Molitany.c-auto-prototypes","_lower":"molitany.c-auto-prototypes"},"activationEvent":"onCommand:AutoPrototype.prototypeCreate"}
|
32
|
+
|
33
|
+
[2020-03-28 20:03:57.516] [exthost] [info] ExtensionService#loadCommonJSModule file:///Users/username/.vscode/extensions/molitany.c-auto-prototypes-1.9.5/AutoPrototype.js
|
34
|
+
|
35
|
+
|
36
|
+
|
37
|
+
```
|
2
タイトルを変更
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
VSCode
|
1
|
+
VSCode 拡張機能が使えない原因をデバッグやエラーログを見ることで突き止めたい。
|
test
CHANGED
File without changes
|
1
リンクを編集
test
CHANGED
File without changes
|
test
CHANGED
@@ -8,9 +8,9 @@
|
|
8
8
|
|
9
9
|
|
10
10
|
|
11
|
-
C Auto Prototypes
|
11
|
+
[C Auto Prototypes](https://marketplace.visualstudio.com/items?itemName=Molitany.c-auto-prototypes&ssr=false#overview)
|
12
12
|
|
13
|
-
|
13
|
+
|
14
14
|
|
15
15
|
|
16
16
|
|