我如何识别接管降价编辑的扩展
How do I recognize the extension that has taken over markdown editing
我突然发现我的markdown文件正在被一个带有中文菜单的所见即所得编辑器打开。没有检测到任何语言,搜索我的扩展也没有给出任何提示。我如何确定哪个扩展程序处于活动状态?
通常,有一个名为“开发人员:显示 运行 扩展程序”的命令,您可以从命令面板激活它。
在这种情况下,我在该屏幕截图中看到一个奇怪的拼写:“Vditor”。
Searching for that word finds a few pages, including one whose title is "vditor VS vscode-markdown-editor". From that page, I found Vanessa219/vditor
.
该项目声称是
An In-browser Markdown editor, support WYSIWYG (Rich Text), Instant Rendering (Typora-like) and Split View modes
但不是 Visual Studio 代码插件。
但是,扩展 vscode all markdown 表示它由 Vditor“提供支持”。我怀疑您会发现这是要禁用的插件。
还有一个叫vscode-office的东西。它开箱即用地使用 Vditor for Markdown,但这可以被禁用:
It change markdown editor as vditor, it's WYSIWYG editor for markdown...
if you want using vscode editor, insert below json to vscode config.
"workbench.editorAssociations": [{
"viewType": "default",
"filenamePattern": "*.md"
}]
我突然发现我的markdown文件正在被一个带有中文菜单的所见即所得编辑器打开。没有检测到任何语言,搜索我的扩展也没有给出任何提示。我如何确定哪个扩展程序处于活动状态?
通常,有一个名为“开发人员:显示 运行 扩展程序”的命令,您可以从命令面板激活它。
在这种情况下,我在该屏幕截图中看到一个奇怪的拼写:“Vditor”。
Searching for that word finds a few pages, including one whose title is "vditor VS vscode-markdown-editor". From that page, I found Vanessa219/vditor
.
该项目声称是
An In-browser Markdown editor, support WYSIWYG (Rich Text), Instant Rendering (Typora-like) and Split View modes
但不是 Visual Studio 代码插件。
但是,扩展 vscode all markdown 表示它由 Vditor“提供支持”。我怀疑您会发现这是要禁用的插件。
还有一个叫vscode-office的东西。它开箱即用地使用 Vditor for Markdown,但这可以被禁用:
It change markdown editor as vditor, it's WYSIWYG editor for markdown...
if you want using vscode editor, insert below json to vscode config.
"workbench.editorAssociations": [{ "viewType": "default", "filenamePattern": "*.md" }]