vscode-markdown-editor
vscode-markdown-editor copied to clipboard
How to open `*.md` files with markdown editor?
How to open *.md
files with markdown editor?
VSCode has workbench.editorAssociations
option.
I want set markdown editor to the option but I don't know setting value.
"workbench.editorAssociations": {
"*.md": "vscode.markdown.preview.editor"
},
In this example, open it in preview by default.
I think this is what they meant with the TODO entry - using the Custom Text Editor feature is probably a prerequisite.
this is
"workbench.editorAssociations": { "*.md": "myEdit.markdown" },