我想用来vscode.window.showInformationMessage显示一些消息。但我不能在其中换行。
我想要的是:
title:xxx
description:xxx
Run Code Online (Sandbox Code Playgroud)
我实际得到:
title:xxx description:xxx
Run Code Online (Sandbox Code Playgroud)
我的代码:
vscode.window.showInformationMessage("title:xxx\ndescription:xxx");
Run Code Online (Sandbox Code Playgroud)
