How to open a browser within VSCode just like another editor tab

江枫思渺然 提交于 2019-11-28 03:52:06

问题


For a VSCode extension i want open browser within VSCode not externally, wherein i can load some URL (https://developers.redhat.com/)

I tried looking into various options to achieve it in VScode extension, what i came across is with help of webview i.e 'vscode.previewHtml' we can pass html content which would be rendered with in VSCode editor tab, but what i have is url to load. Can pass it to iframe but i can't open it in iframe

Another option is to open it in browser but it opens external browser.

what i need is to open a browser within IDE (VSCode), experience should be similar to what we get for 'vscode.previewHtml'

or as we see in IDEs like eclipse where browser window is opened right inside IDE.

As we can see below

Please give inputs, suggestions


回答1:


In order to render your html you can use the WebView API: https://code.visualstudio.com/docs/extensions/webview



来源:https://stackoverflow.com/questions/46356759/how-to-open-a-browser-within-vscode-just-like-another-editor-tab

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!