opensumi / core

🚀 A framework helps you quickly build AI Native IDE products.
https://opensumi.com
MIT License
2.98k stars 382 forks source link

如何使用插件实现,匹配文件类型,渲染自定义编辑器组件 #3676

Closed zhang-xiaoyan closed 5 months ago

zhang-xiaoyan commented 5 months ago

描述你的问题(Describe you question here)

用插件实现:匹配文件 .test,点击 .test 文件,渲染自定义编辑器组件 遇到的问题: 1、匹配到 .test 文件,点击 .test 文件不知道怎么去打开自定义编辑器组件 https://opensumi.com/zh/docs/extension/interface/custom-editor-component 1715741309309

3、版本: "@opensumi/sumi": "2.24.5",

erha19 commented 5 months ago

@zhang-xiaoyan 如果希望从底层拦截文件打开方式,建议使用模块进行拓展,参考案例:https://github.com/opensumi/opensumi-module-samples/tree/main/modules/use-antd

zhang-xiaoyan commented 5 months ago

@zhang-xiaoyan 如果希望从底层拦截文件打开方式,建议使用模块进行拓展,参考案例:https://github.com/opensumi/opensumi-module-samples/tree/main/modules/use-antd

用插件可以实现吗,想用插件实现。匹配文件,渲染自定义编辑器。