MacでVSCodeを使って勉強している初心者です。
C Auto Prototypesという拡張機能を使いたいのですが、うまく機能しません。
下記の記載に従って、hotkeyを押すのですが、実行されません。
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.
なにか他の拡張機能と競合しているのか、そもそも現在のVSCodeのバージョンに合っていない拡張機能なのか、調べたいのですが、やり方がわかりません。
既存の拡張機能のデバッグや、エラーの確認などする方法はございますでしょうか。
ご存じの方いらっしゃいましたら教えていただけますと幸いです。
2020/03/28 20:13 加筆
頂いたアドバイスを元にログを見つけることができましたが、何が動かない原因になっているのかわかりませんでした。
[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"} [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
###実行しているのは、以下のシンプルなコードです。
test.c
1#include <stdio.h> 2 3int main(void) 4{ 5 printsample(); 6 return 0; 7} 8 9void printsample(void) 10{ 11 printf("hello!\n"); 12}
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/03/28 11:15
2020/03/28 12:10
2020/03/28 12:37
2020/03/29 01:29
2020/03/29 10:49
2020/03/29 12:52 編集
2020/03/30 01:39
2020/03/30 02:18
2020/03/30 02:25