3
何らかの入力方法で、入力フォームを持つVSCode拡張を作成したいとします。これまでのところ、ドキュメント処理や拡張機能の出力しか見ていませんでした。vscode extensionフォームを表示する方法
入力フィールドのフォームをvscode拡張子に表示するにはどうすればよいですか?
何らかの入力方法で、入力フォームを持つVSCode拡張を作成したいとします。これまでのところ、ドキュメント処理や拡張機能の出力しか見ていませんでした。vscode extensionフォームを表示する方法
入力フィールドのフォームをvscode拡張子に表示するにはどうすればよいですか?
どのくらいのデータを入力する必要がありますか?入力、現時点で感謝を簡単な入力ボックスを使用してのみ可能である - それはあまりいないなら、あなたはhttps://code.visualstudio.com/docs/extensionAPI/vscode-api
showInputBox(options?: InputBoxOptions): Thenable<string>
Opens an input box to ask the user for input.
The returned value will be undefined if the input box was canceled (e.g. pressing ESC). Otherwise the returned value will be the string typed by the user or an empty string if the user did not type anything but dismissed the input box with OK.
Parameter Description
options?: InputBoxOptions
Configures the behavior of the input box.
Returns Description
Thenable<string>
A promise that resolves to a string the user provided or to undefined in case of dismissal.
からInputBoxes
のシリーズでそれを処理できる必要がありますはい、私はあなたが上のスポットがあると思います。 – user30803