有什么方法可以启用 vs code webview 的搜索功能吗?
Are there any way of enabling the search feature for vs code webview?
我正在对 VS Code 进行扩展,我在网络视图中显示 html5 文章。
我注意到我无法使用查找 (ctrl + f) 功能搜索文档。
我想知道是否有任何方法可以启用它,或者可以使用 js/ts 来实现它。
到目前为止,我最好的想法是检测用户是否使用 ctrl + f 快捷方式,并使用 window.find() 创建我自己的搜索功能。我不确定 jet 是否会起作用,感觉它不是最佳解决方案。
有什么方法可以启用 vs code webview 的搜索功能吗?
创建 webview 时检查 webview 面板选项:
/**
* Content settings for a webview panel.
*/
export interface WebviewPanelOptions {
/**
* Controls if the find widget is enabled in the panel.
*
* Defaults to false.
*/
readonly enableFindWidget?: boolean;
我正在对 VS Code 进行扩展,我在网络视图中显示 html5 文章。 我注意到我无法使用查找 (ctrl + f) 功能搜索文档。 我想知道是否有任何方法可以启用它,或者可以使用 js/ts 来实现它。 到目前为止,我最好的想法是检测用户是否使用 ctrl + f 快捷方式,并使用 window.find() 创建我自己的搜索功能。我不确定 jet 是否会起作用,感觉它不是最佳解决方案。 有什么方法可以启用 vs code webview 的搜索功能吗?
创建 webview 时检查 webview 面板选项:
/**
* Content settings for a webview panel.
*/
export interface WebviewPanelOptions {
/**
* Controls if the find widget is enabled in the panel.
*
* Defaults to false.
*/
readonly enableFindWidget?: boolean;