DavidAnson / vscode-markdownlint

Markdown linting and style checking for Visual Studio Code
https://marketplace.visualstudio.com/items?itemName=DavidAnson.vscode-markdownlint
MIT License
897 stars 166 forks source link

How to automatically open md file with VSC+Markdownlint Editor #254

Closed coisox closed 1 year ago

coisox commented 1 year ago

Sorry if this is not the correct place to ask. I couldn't find in Wiki or during installation.

I want to double click .md file from Windows Explorer and it will auto open VSC + Markdownlint Editor, not the source code editor. Currently I can auto open in VSC but I have to press CTRL+SHIFT+P and choose "markdown-editor: Open with markdown editor"

Is it possible and how?

DavidAnson commented 1 year ago

The command you show ("markdown-editor") is not provided by the markdownlint extension. You may find an answer in the docs for that editor or the VS Code Docs here: https://code.visualstudio.com/docs/languages/markdown

coisox commented 1 year ago

So "markdown-editor" is not came from markdownlint? What editor (or how to access) for markdownlint? Sorry again if this sounds so noob. I really not familiar with the terminology

coisox commented 1 year ago

I think I'm starting to understand. If the command coming from markdownlint, it should be "markdownlint: Do something" right?

DavidAnson commented 1 year ago

Right. Check the extensions you have installed, maybe disable them one-by-one to find when that command disappears. I don't think it's a built-in VS Code thing.

coisox commented 1 year ago

Thank you sir.