Files
vscode/extensions/markdown-language-features/package.json
T

1803 lines
63 KiB
JSON

{
"name": "markdown-language-features",
"displayName": "%displayName%",
"description": "%description%",
"version": "10.0.0",
"icon": "icon.png",
"publisher": "vscode",
"license": "MIT",
"aiKey": "0c6ae279ed8443289764825290e4f9e2-1a736e7c-1324-4338-be46-fc2a58ae4d14-7255",
"enabledApiProposals": [
"agentEditorComments",
"customEditorDiffs",
"documentDiff",
"documentSyntaxHighlighting",
"textEditorDiffInformation"
],
"engines": {
"vscode": "^1.70.0"
},
"main": "./out/extension",
"browser": "./dist/browser/extension",
"categories": [
"Programming Languages"
],
"activationEvents": [
"onLanguage:markdown",
"onLanguage:prompt",
"onLanguage:instructions",
"onLanguage:chatagent",
"onLanguage:skill",
"onCommand:markdown.api.render",
"onCommand:markdown.api.reloadPlugins",
"onWebviewPanel:markdown.preview"
],
"capabilities": {
"virtualWorkspaces": true,
"untrustedWorkspaces": {
"supported": "limited",
"description": "%workspaceTrust%",
"restrictedConfigurations": [
"markdown.styles"
]
}
},
"contributes": {
"notebookRenderer": [
{
"id": "vscode.markdown-it-renderer",
"displayName": "Markdown it renderer",
"entrypoint": "./notebook-out/index.js",
"mimeTypes": [
"text/markdown",
"text/latex",
"text/x-css",
"text/x-html",
"text/x-json",
"text/x-typescript",
"text/x-abap",
"text/x-apex",
"text/x-azcli",
"text/x-bat",
"text/x-cameligo",
"text/x-clojure",
"text/x-coffee",
"text/x-cpp",
"text/x-csharp",
"text/x-csp",
"text/x-css",
"text/x-dart",
"text/x-dockerfile",
"text/x-ecl",
"text/x-fsharp",
"text/x-go",
"text/x-graphql",
"text/x-handlebars",
"text/x-hcl",
"text/x-html",
"text/x-ini",
"text/x-java",
"text/x-javascript",
"text/x-julia",
"text/x-kotlin",
"text/x-less",
"text/x-lexon",
"text/x-lua",
"text/x-m3",
"text/x-markdown",
"text/x-mips",
"text/x-msdax",
"text/x-mysql",
"text/x-objective-c/objective",
"text/x-pascal",
"text/x-pascaligo",
"text/x-perl",
"text/x-pgsql",
"text/x-php",
"text/x-postiats",
"text/x-powerquery",
"text/x-powershell",
"text/x-pug",
"text/x-python",
"text/x-r",
"text/x-razor",
"text/x-redis",
"text/x-redshift",
"text/x-restructuredtext",
"text/x-ruby",
"text/x-rust",
"text/x-sb",
"text/x-scala",
"text/x-scheme",
"text/x-scss",
"text/x-shell",
"text/x-solidity",
"text/x-sophia",
"text/x-sql",
"text/x-st",
"text/x-swift",
"text/x-systemverilog",
"text/x-tcl",
"text/x-twig",
"text/x-typescript",
"text/x-vb",
"text/x-xml",
"text/x-yaml",
"application/json"
]
}
],
"commands": [
{
"command": "_markdown.copyImage",
"title": "%markdown.copyImage.title%",
"category": "Markdown"
},
{
"command": "_markdown.openImage",
"title": "%markdown.openImage.title%",
"category": "Markdown"
},
{
"command": "_markdown.openFrontMatterSettings",
"title": "%markdown.openFrontMatterSettings.title%",
"category": "Markdown"
},
{
"command": "markdown.showPreview",
"title": "%markdown.preview.title%",
"category": "Markdown",
"icon": {
"light": "./media/preview-light.svg",
"dark": "./media/preview-dark.svg"
}
},
{
"command": "markdown.showPreviewToSide",
"title": "%markdown.previewSide.title%",
"category": "Markdown",
"icon": "$(open-preview)"
},
{
"command": "markdown.showLockedPreviewToSide",
"title": "%markdown.showLockedPreviewToSide.title%",
"category": "Markdown",
"icon": "$(open-preview)"
},
{
"command": "markdown.showSource",
"title": "%markdown.showSource.title%",
"category": "Markdown",
"icon": "$(file-code)"
},
{
"command": "markdown.showPreviewSecuritySelector",
"title": "%markdown.showPreviewSecuritySelector.title%",
"category": "Markdown"
},
{
"command": "markdown.preview.refresh",
"title": "%markdown.preview.refresh.title%",
"category": "Markdown"
},
{
"command": "markdown.preview.toggleLock",
"title": "%markdown.preview.toggleLock.title%",
"category": "Markdown"
},
{
"command": "markdown.findAllFileReferences",
"title": "%markdown.findAllFileReferences%",
"category": "Markdown"
},
{
"command": "markdown.reopenAsPreview",
"title": "%markdown.reopenAsPreview.title%",
"category": "Markdown",
"icon": "$(preview)"
},
{
"command": "markdown.reopenAsSource",
"title": "%markdown.reopenAsSource.title%",
"category": "Markdown",
"icon": "$(file-code)"
},
{
"command": "markdown.togglePreview",
"title": "%markdown.togglePreview.title%",
"category": "Markdown"
},
{
"command": "markdown.editor.insertLinkFromWorkspace",
"title": "%markdown.editor.insertLinkFromWorkspace%",
"category": "Markdown",
"enablement": "editorLangId =~ /^(markdown|prompt|instructions|chatagent|skill)$/ && !activeEditorIsReadonly"
},
{
"command": "markdown.editor.insertImageFromWorkspace",
"title": "%markdown.editor.insertImageFromWorkspace%",
"category": "Markdown",
"enablement": "editorLangId =~ /^(markdown|prompt|instructions|chatagent|skill)$/ && !activeEditorIsReadonly"
},
{
"command": "markdown.editor.cursorLeft",
"title": "%markdown.editor.cursorLeft.title%",
"category": "Markdown Editor",
"enablement": "activeCustomEditorId == 'vscode.markdown.editor'",
"$generated": true
},
{
"command": "markdown.editor.cursorRight",
"title": "%markdown.editor.cursorRight.title%",
"category": "Markdown Editor",
"enablement": "activeCustomEditorId == 'vscode.markdown.editor'",
"$generated": true
},
{
"command": "markdown.editor.cursorUp",
"title": "%markdown.editor.cursorUp.title%",
"category": "Markdown Editor",
"enablement": "activeCustomEditorId == 'vscode.markdown.editor'",
"$generated": true
},
{
"command": "markdown.editor.cursorDown",
"title": "%markdown.editor.cursorDown.title%",
"category": "Markdown Editor",
"enablement": "activeCustomEditorId == 'vscode.markdown.editor'",
"$generated": true
},
{
"command": "markdown.editor.cursorLeftSelect",
"title": "%markdown.editor.cursorLeftSelect.title%",
"category": "Markdown Editor",
"enablement": "activeCustomEditorId == 'vscode.markdown.editor'",
"$generated": true
},
{
"command": "markdown.editor.cursorRightSelect",
"title": "%markdown.editor.cursorRightSelect.title%",
"category": "Markdown Editor",
"enablement": "activeCustomEditorId == 'vscode.markdown.editor'",
"$generated": true
},
{
"command": "markdown.editor.cursorUpSelect",
"title": "%markdown.editor.cursorUpSelect.title%",
"category": "Markdown Editor",
"enablement": "activeCustomEditorId == 'vscode.markdown.editor'",
"$generated": true
},
{
"command": "markdown.editor.cursorDownSelect",
"title": "%markdown.editor.cursorDownSelect.title%",
"category": "Markdown Editor",
"enablement": "activeCustomEditorId == 'vscode.markdown.editor'",
"$generated": true
},
{
"command": "markdown.editor.cursorWordLeft",
"title": "%markdown.editor.cursorWordLeft.title%",
"category": "Markdown Editor",
"enablement": "activeCustomEditorId == 'vscode.markdown.editor'",
"$generated": true
},
{
"command": "markdown.editor.cursorWordRight",
"title": "%markdown.editor.cursorWordRight.title%",
"category": "Markdown Editor",
"enablement": "activeCustomEditorId == 'vscode.markdown.editor'",
"$generated": true
},
{
"command": "markdown.editor.cursorWordLeftSelect",
"title": "%markdown.editor.cursorWordLeftSelect.title%",
"category": "Markdown Editor",
"enablement": "activeCustomEditorId == 'vscode.markdown.editor'",
"$generated": true
},
{
"command": "markdown.editor.cursorWordRightSelect",
"title": "%markdown.editor.cursorWordRightSelect.title%",
"category": "Markdown Editor",
"enablement": "activeCustomEditorId == 'vscode.markdown.editor'",
"$generated": true
},
{
"command": "markdown.editor.cursorVisualLineStart",
"title": "%markdown.editor.cursorVisualLineStart.title%",
"category": "Markdown Editor",
"enablement": "activeCustomEditorId == 'vscode.markdown.editor'",
"$generated": true
},
{
"command": "markdown.editor.cursorVisualLineEnd",
"title": "%markdown.editor.cursorVisualLineEnd.title%",
"category": "Markdown Editor",
"enablement": "activeCustomEditorId == 'vscode.markdown.editor'",
"$generated": true
},
{
"command": "markdown.editor.cursorVisualLineStartSelect",
"title": "%markdown.editor.cursorVisualLineStartSelect.title%",
"category": "Markdown Editor",
"enablement": "activeCustomEditorId == 'vscode.markdown.editor'",
"$generated": true
},
{
"command": "markdown.editor.cursorVisualLineEndSelect",
"title": "%markdown.editor.cursorVisualLineEndSelect.title%",
"category": "Markdown Editor",
"enablement": "activeCustomEditorId == 'vscode.markdown.editor'",
"$generated": true
},
{
"command": "markdown.editor.cursorLogicalLineStart",
"title": "%markdown.editor.cursorLogicalLineStart.title%",
"category": "Markdown Editor",
"enablement": "activeCustomEditorId == 'vscode.markdown.editor'",
"$generated": true
},
{
"command": "markdown.editor.cursorLogicalLineEnd",
"title": "%markdown.editor.cursorLogicalLineEnd.title%",
"category": "Markdown Editor",
"enablement": "activeCustomEditorId == 'vscode.markdown.editor'",
"$generated": true
},
{
"command": "markdown.editor.cursorLogicalLineStartSelect",
"title": "%markdown.editor.cursorLogicalLineStartSelect.title%",
"category": "Markdown Editor",
"enablement": "activeCustomEditorId == 'vscode.markdown.editor'",
"$generated": true
},
{
"command": "markdown.editor.cursorLogicalLineEndSelect",
"title": "%markdown.editor.cursorLogicalLineEndSelect.title%",
"category": "Markdown Editor",
"enablement": "activeCustomEditorId == 'vscode.markdown.editor'",
"$generated": true
},
{
"command": "markdown.editor.cursorDocumentStart",
"title": "%markdown.editor.cursorDocumentStart.title%",
"category": "Markdown Editor",
"enablement": "activeCustomEditorId == 'vscode.markdown.editor'",
"$generated": true
},
{
"command": "markdown.editor.cursorDocumentEnd",
"title": "%markdown.editor.cursorDocumentEnd.title%",
"category": "Markdown Editor",
"enablement": "activeCustomEditorId == 'vscode.markdown.editor'",
"$generated": true
},
{
"command": "markdown.editor.cursorDocumentStartSelect",
"title": "%markdown.editor.cursorDocumentStartSelect.title%",
"category": "Markdown Editor",
"enablement": "activeCustomEditorId == 'vscode.markdown.editor'",
"$generated": true
},
{
"command": "markdown.editor.cursorDocumentEndSelect",
"title": "%markdown.editor.cursorDocumentEndSelect.title%",
"category": "Markdown Editor",
"enablement": "activeCustomEditorId == 'vscode.markdown.editor'",
"$generated": true
},
{
"command": "markdown.editor.selectAll",
"title": "%markdown.editor.selectAll.title%",
"category": "Markdown Editor",
"enablement": "activeCustomEditorId == 'vscode.markdown.editor'",
"$generated": true
},
{
"command": "markdown.editor.deleteLeft",
"title": "%markdown.editor.deleteLeft.title%",
"category": "Markdown Editor",
"enablement": "activeCustomEditorId == 'vscode.markdown.editor'",
"$generated": true
},
{
"command": "markdown.editor.deleteRight",
"title": "%markdown.editor.deleteRight.title%",
"category": "Markdown Editor",
"enablement": "activeCustomEditorId == 'vscode.markdown.editor'",
"$generated": true
},
{
"command": "markdown.editor.deleteWordLeft",
"title": "%markdown.editor.deleteWordLeft.title%",
"category": "Markdown Editor",
"enablement": "activeCustomEditorId == 'vscode.markdown.editor'",
"$generated": true
},
{
"command": "markdown.editor.deleteWordRight",
"title": "%markdown.editor.deleteWordRight.title%",
"category": "Markdown Editor",
"enablement": "activeCustomEditorId == 'vscode.markdown.editor'",
"$generated": true
},
{
"command": "markdown.editor.deleteLineLeft",
"title": "%markdown.editor.deleteLineLeft.title%",
"category": "Markdown Editor",
"enablement": "activeCustomEditorId == 'vscode.markdown.editor'",
"$generated": true
},
{
"command": "markdown.editor.deleteLineRight",
"title": "%markdown.editor.deleteLineRight.title%",
"category": "Markdown Editor",
"enablement": "activeCustomEditorId == 'vscode.markdown.editor'",
"$generated": true
},
{
"command": "markdown.editor.undo",
"title": "%markdown.editor.undo.title%",
"category": "Markdown Editor",
"enablement": "activeCustomEditorId == 'vscode.markdown.editor'",
"$generated": true
},
{
"command": "markdown.editor.redo",
"title": "%markdown.editor.redo.title%",
"category": "Markdown Editor",
"enablement": "activeCustomEditorId == 'vscode.markdown.editor'",
"$generated": true
},
{
"command": "markdown.editor.insertTab",
"title": "%markdown.editor.insertTab.title%",
"category": "Markdown Editor",
"enablement": "activeCustomEditorId == 'vscode.markdown.editor'",
"$generated": true
},
{
"command": "markdown.editor.outdent",
"title": "%markdown.editor.outdent.title%",
"category": "Markdown Editor",
"enablement": "activeCustomEditorId == 'vscode.markdown.editor'",
"$generated": true
},
{
"command": "markdown.editor.toggleTabFocus",
"title": "%markdown.editor.toggleTabFocus.title%",
"category": "Markdown Editor",
"enablement": "activeCustomEditorId == 'vscode.markdown.editor'",
"$generated": true
},
{
"command": "markdown.editor.smartEnter",
"title": "%markdown.editor.smartEnter.title%",
"category": "Markdown Editor",
"enablement": "activeCustomEditorId == 'vscode.markdown.editor'",
"$generated": true
},
{
"command": "markdown.editor.insertHardLineBreak",
"title": "%markdown.editor.insertHardLineBreak.title%",
"category": "Markdown Editor",
"enablement": "activeCustomEditorId == 'vscode.markdown.editor'",
"$generated": true
},
{
"command": "markdown.editor.insertParagraph",
"title": "%markdown.editor.insertParagraph.title%",
"category": "Markdown Editor",
"enablement": "activeCustomEditorId == 'vscode.markdown.editor'",
"$generated": true
}
],
"menus": {
"webview/context": [
{
"command": "_markdown.copyImage",
"when": "(webviewId == 'markdown.preview' || webviewId == 'vscode.markdown.preview.editor') && (webviewSection == 'image' || webviewSection == 'localImage')"
},
{
"command": "_markdown.openImage",
"when": "(webviewId == 'markdown.preview' || webviewId == 'vscode.markdown.preview.editor') && webviewSection == 'localImage'"
},
{
"command": "_markdown.openFrontMatterSettings",
"when": "(webviewId == 'markdown.preview' || webviewId == 'vscode.markdown.preview.editor') && webviewSection == 'frontMatter'"
}
],
"editor/title": [
{
"command": "markdown.showPreviewToSide",
"when": "editorLangId =~ /^(markdown|prompt|instructions|chatagent|skill)$/ && !notebookEditorFocused && !hasCustomMarkdownPreview",
"alt": "markdown.showPreview",
"group": "navigation@1"
},
{
"command": "markdown.reopenAsPreview",
"when": "activeEditor == workbench.editors.files.textFileEditor && resourceLangId =~ /^(markdown|prompt|instructions|chatagent|skill)$/ && !notebookEditorFocused && !hasCustomMarkdownPreview && !isSessionsWindow",
"group": "navigation@2"
},
{
"command": "markdown.showSource",
"when": "activeWebviewPanelId == 'markdown.preview'",
"group": "navigation@2"
},
{
"command": "markdown.reopenAsSource",
"when": "activeCustomEditorId == 'vscode.markdown.preview.editor' && !activeCustomEditorTextDiff && !isSessionsWindow",
"group": "navigation@2"
},
{
"command": "markdown.preview.refresh",
"when": "activeWebviewPanelId == 'markdown.preview' || activeCustomEditorId == 'vscode.markdown.preview.editor'",
"group": "1_markdown"
},
{
"command": "markdown.preview.toggleLock",
"when": "activeWebviewPanelId == 'markdown.preview' || activeCustomEditorId == 'vscode.markdown.preview.editor'",
"group": "1_markdown"
},
{
"command": "markdown.showPreviewSecuritySelector",
"when": "activeWebviewPanelId == 'markdown.preview' || activeCustomEditorId == 'vscode.markdown.preview.editor'",
"group": "1_markdown"
}
],
"modalEditor/editorTitle": [
{
"command": "markdown.showPreviewToSide",
"when": "editorLangId =~ /^(markdown|prompt|instructions|chatagent|skill)$/ && !notebookEditorFocused && !hasCustomMarkdownPreview",
"alt": "markdown.showPreview",
"group": "navigation"
},
{
"command": "markdown.reopenAsPreview",
"when": "(activeEditor == workbench.editors.files.textFileEditor || activeEditor == workbench.editors.textDiffEditor) && resourceLangId =~ /^(markdown|prompt|instructions|chatagent|skill)$/ && !notebookEditorFocused && !hasCustomMarkdownPreview && !isSessionsWindow",
"group": "navigation"
},
{
"command": "markdown.reopenAsSource",
"when": "activeCustomEditorId == 'vscode.markdown.preview.editor' && !activeCustomEditorTextDiff && !isSessionsWindow",
"group": "navigation"
}
],
"explorer/context": [
{
"command": "markdown.showPreview",
"when": "resourceLangId =~ /^(markdown|prompt|instructions|chatagent|skill)$/ && !hasCustomMarkdownPreview",
"group": "navigation"
},
{
"command": "markdown.findAllFileReferences",
"when": "resourceLangId =~ /^(markdown|prompt|instructions|chatagent|skill)$/",
"group": "4_search"
}
],
"editor/title/context": [
{
"command": "markdown.showPreview",
"when": "resourceLangId =~ /^(markdown|prompt|instructions|chatagent|skill)$/ && !hasCustomMarkdownPreview",
"group": "1_open"
},
{
"command": "markdown.findAllFileReferences",
"when": "resourceLangId =~ /^(markdown|prompt|instructions|chatagent|skill)$/"
}
],
"commandPalette": [
{
"command": "_markdown.openImage",
"when": "false"
},
{
"command": "_markdown.copyImage",
"when": "false"
},
{
"command": "markdown.showPreview",
"when": "editorLangId =~ /^(markdown|prompt|instructions|chatagent|skill)$/ && !notebookEditorFocused",
"group": "navigation"
},
{
"command": "markdown.showPreviewToSide",
"when": "editorLangId =~ /^(markdown|prompt|instructions|chatagent|skill)$/ && !notebookEditorFocused",
"group": "navigation"
},
{
"command": "markdown.showLockedPreviewToSide",
"when": "editorLangId =~ /^(markdown|prompt|instructions|chatagent|skill)$/ && !notebookEditorFocused",
"group": "navigation"
},
{
"command": "markdown.showSource",
"when": "activeWebviewPanelId == 'markdown.preview' || activeCustomEditorId == 'vscode.markdown.preview.editor'",
"group": "navigation"
},
{
"command": "markdown.showPreviewSecuritySelector",
"when": "editorLangId =~ /^(markdown|prompt|instructions|chatagent|skill)$/ && !notebookEditorFocused"
},
{
"command": "markdown.showPreviewSecuritySelector",
"when": "activeWebviewPanelId == 'markdown.preview' || activeCustomEditorId == 'vscode.markdown.preview.editor'"
},
{
"command": "markdown.preview.toggleLock",
"when": "activeWebviewPanelId == 'markdown.preview' || activeCustomEditorId == 'vscode.markdown.preview.editor'"
},
{
"command": "markdown.preview.refresh",
"when": "editorLangId =~ /^(markdown|prompt|instructions|chatagent|skill)$/ && !notebookEditorFocused"
},
{
"command": "markdown.preview.refresh",
"when": "activeWebviewPanelId == 'markdown.preview' || activeCustomEditorId == 'vscode.markdown.preview.editor'"
},
{
"command": "markdown.findAllFileReferences",
"when": "editorLangId =~ /^(markdown|prompt|instructions|chatagent|skill)$/"
},
{
"command": "markdown.reopenAsPreview",
"when": "activeEditor == workbench.editors.files.textFileEditor && resourceLangId =~ /^(markdown|prompt|instructions|chatagent|skill)$/",
"group": "navigation"
},
{
"command": "markdown.reopenAsSource",
"when": "activeCustomEditorId == 'vscode.markdown.preview.editor'",
"group": "navigation"
},
{
"command": "markdown.togglePreview",
"when": "resourceLangId =~ /^(markdown|prompt|instructions|chatagent|skill)$/"
},
{
"command": "markdown.editor.cursorLeft",
"when": "false",
"$generated": true
},
{
"command": "markdown.editor.cursorRight",
"when": "false",
"$generated": true
},
{
"command": "markdown.editor.cursorUp",
"when": "false",
"$generated": true
},
{
"command": "markdown.editor.cursorDown",
"when": "false",
"$generated": true
},
{
"command": "markdown.editor.cursorLeftSelect",
"when": "false",
"$generated": true
},
{
"command": "markdown.editor.cursorRightSelect",
"when": "false",
"$generated": true
},
{
"command": "markdown.editor.cursorUpSelect",
"when": "false",
"$generated": true
},
{
"command": "markdown.editor.cursorDownSelect",
"when": "false",
"$generated": true
},
{
"command": "markdown.editor.cursorWordLeft",
"when": "false",
"$generated": true
},
{
"command": "markdown.editor.cursorWordRight",
"when": "false",
"$generated": true
},
{
"command": "markdown.editor.cursorWordLeftSelect",
"when": "false",
"$generated": true
},
{
"command": "markdown.editor.cursorWordRightSelect",
"when": "false",
"$generated": true
},
{
"command": "markdown.editor.cursorVisualLineStart",
"when": "false",
"$generated": true
},
{
"command": "markdown.editor.cursorVisualLineEnd",
"when": "false",
"$generated": true
},
{
"command": "markdown.editor.cursorVisualLineStartSelect",
"when": "false",
"$generated": true
},
{
"command": "markdown.editor.cursorVisualLineEndSelect",
"when": "false",
"$generated": true
},
{
"command": "markdown.editor.cursorLogicalLineStart",
"when": "false",
"$generated": true
},
{
"command": "markdown.editor.cursorLogicalLineEnd",
"when": "false",
"$generated": true
},
{
"command": "markdown.editor.cursorLogicalLineStartSelect",
"when": "false",
"$generated": true
},
{
"command": "markdown.editor.cursorLogicalLineEndSelect",
"when": "false",
"$generated": true
},
{
"command": "markdown.editor.cursorDocumentStart",
"when": "false",
"$generated": true
},
{
"command": "markdown.editor.cursorDocumentEnd",
"when": "false",
"$generated": true
},
{
"command": "markdown.editor.cursorDocumentStartSelect",
"when": "false",
"$generated": true
},
{
"command": "markdown.editor.cursorDocumentEndSelect",
"when": "false",
"$generated": true
},
{
"command": "markdown.editor.selectAll",
"when": "false",
"$generated": true
},
{
"command": "markdown.editor.deleteLeft",
"when": "false",
"$generated": true
},
{
"command": "markdown.editor.deleteRight",
"when": "false",
"$generated": true
},
{
"command": "markdown.editor.deleteWordLeft",
"when": "false",
"$generated": true
},
{
"command": "markdown.editor.deleteWordRight",
"when": "false",
"$generated": true
},
{
"command": "markdown.editor.deleteLineLeft",
"when": "false",
"$generated": true
},
{
"command": "markdown.editor.deleteLineRight",
"when": "false",
"$generated": true
},
{
"command": "markdown.editor.undo",
"when": "false",
"$generated": true
},
{
"command": "markdown.editor.redo",
"when": "false",
"$generated": true
},
{
"command": "markdown.editor.insertTab",
"when": "false",
"$generated": true
},
{
"command": "markdown.editor.outdent",
"when": "false",
"$generated": true
},
{
"command": "markdown.editor.toggleTabFocus",
"when": "false",
"$generated": true
},
{
"command": "markdown.editor.smartEnter",
"when": "false",
"$generated": true
},
{
"command": "markdown.editor.insertHardLineBreak",
"when": "false",
"$generated": true
},
{
"command": "markdown.editor.insertParagraph",
"when": "false",
"$generated": true
}
]
},
"keybindings": [
{
"command": "markdown.showPreviewToSide",
"key": "ctrl+k v",
"mac": "cmd+k v",
"when": "editorFocus && editorLangId =~ /^(markdown|prompt|instructions|chatagent|skill)$/ && !notebookEditorFocused"
},
{
"command": "markdown.togglePreview",
"key": "shift+ctrl+v",
"mac": "shift+cmd+v",
"when": "!terminalFocus && ((editorFocus && resourceLangId =~ /^(markdown|prompt|instructions|chatagent|skill)$/ && !notebookEditorFocused) || activeCustomEditorId == 'vscode.markdown.preview.editor')"
},
{
"command": "markdown.editor.cursorLeft",
"key": "ctrl+b",
"when": "activeCustomEditorId == 'vscode.markdown.editor' && markdownEditorFocus && isMac",
"$generated": true
},
{
"command": "markdown.editor.cursorLeft",
"key": "left",
"when": "activeCustomEditorId == 'vscode.markdown.editor' && markdownEditorFocus",
"$generated": true
},
{
"command": "markdown.editor.cursorRight",
"key": "ctrl+f",
"when": "activeCustomEditorId == 'vscode.markdown.editor' && markdownEditorFocus && isMac",
"$generated": true
},
{
"command": "markdown.editor.cursorRight",
"key": "right",
"when": "activeCustomEditorId == 'vscode.markdown.editor' && markdownEditorFocus",
"$generated": true
},
{
"command": "markdown.editor.cursorUp",
"key": "ctrl+p",
"when": "activeCustomEditorId == 'vscode.markdown.editor' && markdownEditorFocus && isMac",
"$generated": true
},
{
"command": "markdown.editor.cursorUp",
"key": "up",
"when": "activeCustomEditorId == 'vscode.markdown.editor' && markdownEditorFocus",
"$generated": true
},
{
"command": "markdown.editor.cursorDown",
"key": "ctrl+n",
"when": "activeCustomEditorId == 'vscode.markdown.editor' && markdownEditorFocus && isMac",
"$generated": true
},
{
"command": "markdown.editor.cursorDown",
"key": "down",
"when": "activeCustomEditorId == 'vscode.markdown.editor' && markdownEditorFocus",
"$generated": true
},
{
"command": "markdown.editor.cursorLeftSelect",
"key": "shift+left",
"when": "activeCustomEditorId == 'vscode.markdown.editor' && markdownEditorFocus",
"$generated": true
},
{
"command": "markdown.editor.cursorRightSelect",
"key": "shift+right",
"when": "activeCustomEditorId == 'vscode.markdown.editor' && markdownEditorFocus",
"$generated": true
},
{
"command": "markdown.editor.cursorUpSelect",
"key": "shift+up",
"when": "activeCustomEditorId == 'vscode.markdown.editor' && markdownEditorFocus",
"$generated": true
},
{
"command": "markdown.editor.cursorDownSelect",
"key": "shift+down",
"when": "activeCustomEditorId == 'vscode.markdown.editor' && markdownEditorFocus",
"$generated": true
},
{
"command": "markdown.editor.cursorWordLeft",
"key": "alt+left",
"when": "activeCustomEditorId == 'vscode.markdown.editor' && markdownEditorFocus && isMac",
"$generated": true
},
{
"command": "markdown.editor.cursorWordLeft",
"key": "ctrl+left",
"when": "activeCustomEditorId == 'vscode.markdown.editor' && markdownEditorFocus && !isMac",
"$generated": true
},
{
"command": "markdown.editor.cursorWordRight",
"key": "alt+right",
"when": "activeCustomEditorId == 'vscode.markdown.editor' && markdownEditorFocus && isMac",
"$generated": true
},
{
"command": "markdown.editor.cursorWordRight",
"key": "ctrl+right",
"when": "activeCustomEditorId == 'vscode.markdown.editor' && markdownEditorFocus && !isMac",
"$generated": true
},
{
"command": "markdown.editor.cursorWordLeftSelect",
"key": "shift+alt+left",
"when": "activeCustomEditorId == 'vscode.markdown.editor' && markdownEditorFocus && isMac",
"$generated": true
},
{
"command": "markdown.editor.cursorWordLeftSelect",
"key": "ctrl+shift+left",
"when": "activeCustomEditorId == 'vscode.markdown.editor' && markdownEditorFocus && !isMac",
"$generated": true
},
{
"command": "markdown.editor.cursorWordRightSelect",
"key": "shift+alt+right",
"when": "activeCustomEditorId == 'vscode.markdown.editor' && markdownEditorFocus && isMac",
"$generated": true
},
{
"command": "markdown.editor.cursorWordRightSelect",
"key": "ctrl+shift+right",
"when": "activeCustomEditorId == 'vscode.markdown.editor' && markdownEditorFocus && !isMac",
"$generated": true
},
{
"command": "markdown.editor.cursorVisualLineStart",
"key": "cmd+left",
"when": "activeCustomEditorId == 'vscode.markdown.editor' && markdownEditorFocus && isMac",
"$generated": true
},
{
"command": "markdown.editor.cursorVisualLineStart",
"key": "home",
"when": "activeCustomEditorId == 'vscode.markdown.editor' && markdownEditorFocus",
"$generated": true
},
{
"command": "markdown.editor.cursorVisualLineEnd",
"key": "cmd+right",
"when": "activeCustomEditorId == 'vscode.markdown.editor' && markdownEditorFocus && isMac",
"$generated": true
},
{
"command": "markdown.editor.cursorVisualLineEnd",
"key": "end",
"when": "activeCustomEditorId == 'vscode.markdown.editor' && markdownEditorFocus",
"$generated": true
},
{
"command": "markdown.editor.cursorVisualLineStartSelect",
"key": "shift+cmd+left",
"when": "activeCustomEditorId == 'vscode.markdown.editor' && markdownEditorFocus && isMac",
"$generated": true
},
{
"command": "markdown.editor.cursorVisualLineStartSelect",
"key": "shift+home",
"when": "activeCustomEditorId == 'vscode.markdown.editor' && markdownEditorFocus",
"$generated": true
},
{
"command": "markdown.editor.cursorVisualLineEndSelect",
"key": "shift+cmd+right",
"when": "activeCustomEditorId == 'vscode.markdown.editor' && markdownEditorFocus && isMac",
"$generated": true
},
{
"command": "markdown.editor.cursorVisualLineEndSelect",
"key": "shift+end",
"when": "activeCustomEditorId == 'vscode.markdown.editor' && markdownEditorFocus",
"$generated": true
},
{
"command": "markdown.editor.cursorLogicalLineStart",
"key": "ctrl+a",
"when": "activeCustomEditorId == 'vscode.markdown.editor' && markdownEditorFocus && isMac",
"$generated": true
},
{
"command": "markdown.editor.cursorLogicalLineEnd",
"key": "ctrl+e",
"when": "activeCustomEditorId == 'vscode.markdown.editor' && markdownEditorFocus && isMac",
"$generated": true
},
{
"command": "markdown.editor.cursorLogicalLineStartSelect",
"key": "ctrl+shift+a",
"when": "activeCustomEditorId == 'vscode.markdown.editor' && markdownEditorFocus && isMac",
"$generated": true
},
{
"command": "markdown.editor.cursorLogicalLineEndSelect",
"key": "ctrl+shift+e",
"when": "activeCustomEditorId == 'vscode.markdown.editor' && markdownEditorFocus && isMac",
"$generated": true
},
{
"command": "markdown.editor.cursorDocumentStart",
"key": "cmd+up",
"when": "activeCustomEditorId == 'vscode.markdown.editor' && markdownEditorFocus && isMac",
"$generated": true
},
{
"command": "markdown.editor.cursorDocumentStart",
"key": "ctrl+home",
"when": "activeCustomEditorId == 'vscode.markdown.editor' && markdownEditorFocus && !isMac",
"$generated": true
},
{
"command": "markdown.editor.cursorDocumentEnd",
"key": "cmd+down",
"when": "activeCustomEditorId == 'vscode.markdown.editor' && markdownEditorFocus && isMac",
"$generated": true
},
{
"command": "markdown.editor.cursorDocumentEnd",
"key": "ctrl+end",
"when": "activeCustomEditorId == 'vscode.markdown.editor' && markdownEditorFocus && !isMac",
"$generated": true
},
{
"command": "markdown.editor.cursorDocumentStartSelect",
"key": "shift+cmd+up",
"when": "activeCustomEditorId == 'vscode.markdown.editor' && markdownEditorFocus && isMac",
"$generated": true
},
{
"command": "markdown.editor.cursorDocumentStartSelect",
"key": "ctrl+shift+home",
"when": "activeCustomEditorId == 'vscode.markdown.editor' && markdownEditorFocus && !isMac",
"$generated": true
},
{
"command": "markdown.editor.cursorDocumentEndSelect",
"key": "shift+cmd+down",
"when": "activeCustomEditorId == 'vscode.markdown.editor' && markdownEditorFocus && isMac",
"$generated": true
},
{
"command": "markdown.editor.cursorDocumentEndSelect",
"key": "ctrl+shift+end",
"when": "activeCustomEditorId == 'vscode.markdown.editor' && markdownEditorFocus && !isMac",
"$generated": true
},
{
"command": "markdown.editor.selectAll",
"key": "cmd+a",
"when": "activeCustomEditorId == 'vscode.markdown.editor' && markdownEditorFocus && isMac",
"$generated": true
},
{
"command": "markdown.editor.selectAll",
"key": "ctrl+a",
"when": "activeCustomEditorId == 'vscode.markdown.editor' && markdownEditorFocus && !isMac",
"$generated": true
},
{
"command": "markdown.editor.deleteLeft",
"key": "ctrl+h",
"when": "activeCustomEditorId == 'vscode.markdown.editor' && markdownEditorFocus && isMac",
"$generated": true
},
{
"command": "markdown.editor.deleteLeft",
"key": "ctrl+backspace",
"when": "activeCustomEditorId == 'vscode.markdown.editor' && markdownEditorFocus && isMac",
"$generated": true
},
{
"command": "markdown.editor.deleteLeft",
"key": "backspace",
"when": "activeCustomEditorId == 'vscode.markdown.editor' && markdownEditorFocus",
"$generated": true
},
{
"command": "markdown.editor.deleteLeft",
"key": "shift+backspace",
"when": "activeCustomEditorId == 'vscode.markdown.editor' && markdownEditorFocus",
"$generated": true
},
{
"command": "markdown.editor.deleteRight",
"key": "ctrl+d",
"when": "activeCustomEditorId == 'vscode.markdown.editor' && markdownEditorFocus && isMac",
"$generated": true
},
{
"command": "markdown.editor.deleteRight",
"key": "ctrl+delete",
"when": "activeCustomEditorId == 'vscode.markdown.editor' && markdownEditorFocus && isMac",
"$generated": true
},
{
"command": "markdown.editor.deleteRight",
"key": "delete",
"when": "activeCustomEditorId == 'vscode.markdown.editor' && markdownEditorFocus",
"$generated": true
},
{
"command": "markdown.editor.deleteWordLeft",
"key": "alt+backspace",
"when": "activeCustomEditorId == 'vscode.markdown.editor' && markdownEditorFocus && isMac",
"$generated": true
},
{
"command": "markdown.editor.deleteWordLeft",
"key": "ctrl+backspace",
"when": "activeCustomEditorId == 'vscode.markdown.editor' && markdownEditorFocus && !isMac",
"$generated": true
},
{
"command": "markdown.editor.deleteWordRight",
"key": "alt+delete",
"when": "activeCustomEditorId == 'vscode.markdown.editor' && markdownEditorFocus && isMac",
"$generated": true
},
{
"command": "markdown.editor.deleteWordRight",
"key": "ctrl+delete",
"when": "activeCustomEditorId == 'vscode.markdown.editor' && markdownEditorFocus && !isMac",
"$generated": true
},
{
"command": "markdown.editor.deleteLineLeft",
"key": "cmd+backspace",
"when": "activeCustomEditorId == 'vscode.markdown.editor' && markdownEditorFocus && isMac",
"$generated": true
},
{
"command": "markdown.editor.deleteLineRight",
"key": "cmd+delete",
"when": "activeCustomEditorId == 'vscode.markdown.editor' && markdownEditorFocus && isMac",
"$generated": true
},
{
"command": "markdown.editor.deleteLineRight",
"key": "ctrl+k",
"when": "activeCustomEditorId == 'vscode.markdown.editor' && markdownEditorFocus && isMac",
"$generated": true
},
{
"command": "markdown.editor.undo",
"key": "cmd+z",
"when": "activeCustomEditorId == 'vscode.markdown.editor' && markdownEditorFocus && isMac",
"$generated": true
},
{
"command": "markdown.editor.undo",
"key": "ctrl+z",
"when": "activeCustomEditorId == 'vscode.markdown.editor' && markdownEditorFocus && !isMac",
"$generated": true
},
{
"command": "markdown.editor.redo",
"key": "shift+cmd+z",
"when": "activeCustomEditorId == 'vscode.markdown.editor' && markdownEditorFocus && isMac",
"$generated": true
},
{
"command": "markdown.editor.redo",
"key": "ctrl+shift+z",
"when": "activeCustomEditorId == 'vscode.markdown.editor' && markdownEditorFocus && !isMac",
"$generated": true
},
{
"command": "markdown.editor.redo",
"key": "ctrl+y",
"when": "activeCustomEditorId == 'vscode.markdown.editor' && markdownEditorFocus && !isMac",
"$generated": true
},
{
"command": "markdown.editor.smartEnter",
"key": "enter",
"when": "activeCustomEditorId == 'vscode.markdown.editor' && markdownEditorFocus",
"$generated": true
},
{
"command": "markdown.editor.insertHardLineBreak",
"key": "shift+enter",
"when": "activeCustomEditorId == 'vscode.markdown.editor' && markdownEditorFocus",
"$generated": true
},
{
"command": "markdown.editor.insertParagraph",
"key": "cmd+enter",
"when": "activeCustomEditorId == 'vscode.markdown.editor' && markdownEditorFocus && isMac",
"$generated": true
},
{
"command": "markdown.editor.insertParagraph",
"key": "ctrl+enter",
"when": "activeCustomEditorId == 'vscode.markdown.editor' && markdownEditorFocus",
"$generated": true
}
],
"configuration": [
{
"title": "%configuration.editor%",
"order": 20,
"properties": {
"markdown.links.openLocation": {
"type": "string",
"default": "currentGroup",
"description": "%configuration.markdown.links.openLocation.description%",
"scope": "resource",
"enum": [
"currentGroup",
"beside"
],
"enumDescriptions": [
"%configuration.markdown.links.openLocation.currentGroup%",
"%configuration.markdown.links.openLocation.beside%"
]
},
"markdown.suggest.paths.enabled": {
"type": "boolean",
"default": true,
"description": "%configuration.markdown.suggest.paths.enabled.description%",
"scope": "resource"
},
"markdown.suggest.paths.includeWorkspaceHeaderCompletions": {
"type": "string",
"default": "onDoubleHash",
"scope": "resource",
"markdownDescription": "%configuration.markdown.suggest.paths.includeWorkspaceHeaderCompletions%",
"enum": [
"never",
"onDoubleHash",
"onSingleOrDoubleHash"
],
"markdownEnumDescriptions": [
"%configuration.markdown.suggest.paths.includeWorkspaceHeaderCompletions.never%",
"%configuration.markdown.suggest.paths.includeWorkspaceHeaderCompletions.onDoubleHash%",
"%configuration.markdown.suggest.paths.includeWorkspaceHeaderCompletions.onSingleOrDoubleHash%"
]
},
"markdown.editor.drop.enabled": {
"type": "string",
"scope": "resource",
"markdownDescription": "%configuration.markdown.editor.drop.enabled%",
"default": "smart",
"enum": [
"always",
"smart",
"never"
],
"markdownEnumDescriptions": [
"%configuration.markdown.editor.drop.enabled.always%",
"%configuration.markdown.editor.drop.enabled.smart%",
"%configuration.markdown.editor.drop.enabled.never%"
]
},
"markdown.editor.drop.copyIntoWorkspace": {
"type": "string",
"markdownDescription": "%configuration.markdown.editor.drop.copyIntoWorkspace%",
"default": "mediaFiles",
"enum": [
"mediaFiles",
"never"
],
"markdownEnumDescriptions": [
"%configuration.copyIntoWorkspace.mediaFiles%",
"%configuration.copyIntoWorkspace.never%"
]
},
"markdown.editor.filePaste.enabled": {
"type": "string",
"scope": "resource",
"markdownDescription": "%configuration.markdown.editor.filePaste.enabled%",
"default": "smart",
"enum": [
"always",
"smart",
"never"
],
"markdownEnumDescriptions": [
"%configuration.markdown.editor.filePaste.enabled.always%",
"%configuration.markdown.editor.filePaste.enabled.smart%",
"%configuration.markdown.editor.filePaste.enabled.never%"
]
},
"markdown.editor.filePaste.copyIntoWorkspace": {
"type": "string",
"markdownDescription": "%configuration.markdown.editor.filePaste.copyIntoWorkspace%",
"default": "mediaFiles",
"enum": [
"mediaFiles",
"never"
],
"markdownEnumDescriptions": [
"%configuration.copyIntoWorkspace.mediaFiles%",
"%configuration.copyIntoWorkspace.never%"
]
},
"markdown.editor.filePaste.videoSnippet": {
"type": "string",
"markdownDescription": "%configuration.markdown.editor.filePaste.videoSnippet%",
"default": "<video controls src=\"${src}\" title=\"${title}\"></video>"
},
"markdown.editor.filePaste.audioSnippet": {
"type": "string",
"markdownDescription": "%configuration.markdown.editor.filePaste.audioSnippet%",
"default": "<audio controls src=\"${src}\" title=\"${title}\"></audio>"
},
"markdown.editor.pasteUrlAsFormattedLink.enabled": {
"type": "string",
"scope": "resource",
"markdownDescription": "%configuration.markdown.editor.pasteUrlAsFormattedLink.enabled%",
"default": "smartWithSelection",
"enum": [
"always",
"smart",
"smartWithSelection",
"never"
],
"markdownEnumDescriptions": [
"%configuration.pasteUrlAsFormattedLink.always%",
"%configuration.pasteUrlAsFormattedLink.smart%",
"%configuration.pasteUrlAsFormattedLink.smartWithSelection%",
"%configuration.pasteUrlAsFormattedLink.never%"
]
},
"markdown.editor.updateLinksOnPaste.enabled": {
"type": "boolean",
"markdownDescription": "%configuration.markdown.editor.updateLinksOnPaste.enabled%",
"scope": "resource",
"default": true
},
"markdown.updateLinksOnFileMove.enabled": {
"type": "string",
"enum": [
"prompt",
"always",
"never"
],
"markdownEnumDescriptions": [
"%configuration.markdown.updateLinksOnFileMove.enabled.prompt%",
"%configuration.markdown.updateLinksOnFileMove.enabled.always%",
"%configuration.markdown.updateLinksOnFileMove.enabled.never%"
],
"default": "never",
"markdownDescription": "%configuration.markdown.updateLinksOnFileMove.enabled%",
"scope": "window"
},
"markdown.updateLinksOnFileMove.include": {
"type": "array",
"markdownDescription": "%configuration.markdown.updateLinksOnFileMove.include%",
"scope": "window",
"items": {
"type": "string",
"description": "%configuration.markdown.updateLinksOnFileMove.include.property%"
},
"default": [
"**/*.{md,mkd,mdwn,mdown,markdown,markdn,mdtxt,mdtext,workbook}",
"**/*.{jpg,jpe,jpeg,png,bmp,gif,ico,webp,avif,tiff,svg,mp4}"
]
},
"markdown.updateLinksOnFileMove.enableForDirectories": {
"type": "boolean",
"default": true,
"description": "%configuration.markdown.updateLinksOnFileMove.enableForDirectories%",
"scope": "window"
},
"markdown.occurrencesHighlight.enabled": {
"type": "boolean",
"default": false,
"description": "%configuration.markdown.occurrencesHighlight.enabled%",
"scope": "resource"
},
"markdown.copyFiles.destination": {
"type": "object",
"markdownDescription": "%configuration.markdown.copyFiles.destination%",
"additionalProperties": {
"type": "string"
}
},
"markdown.copyFiles.overwriteBehavior": {
"type": "string",
"markdownDescription": "%configuration.markdown.copyFiles.overwriteBehavior%",
"default": "nameIncrementally",
"enum": [
"nameIncrementally",
"overwrite"
],
"markdownEnumDescriptions": [
"%configuration.markdown.copyFiles.overwriteBehavior.nameIncrementally%",
"%configuration.markdown.copyFiles.overwriteBehavior.overwrite%"
]
},
"markdown.preferredMdPathExtensionStyle": {
"type": "string",
"default": "auto",
"markdownDescription": "%configuration.markdown.preferredMdPathExtensionStyle%",
"enum": [
"auto",
"includeExtension",
"removeExtension"
],
"markdownEnumDescriptions": [
"%configuration.markdown.preferredMdPathExtensionStyle.auto%",
"%configuration.markdown.preferredMdPathExtensionStyle.includeExtension%",
"%configuration.markdown.preferredMdPathExtensionStyle.removeExtension%"
]
}
}
},
{
"title": "%configuration.validation%",
"order": 22,
"properties": {
"markdown.validate.enabled": {
"order": 0,
"type": "boolean",
"scope": "resource",
"description": "%configuration.markdown.validate.enabled.description%",
"default": false
},
"markdown.validate.referenceLinks.enabled": {
"type": "string",
"scope": "resource",
"markdownDescription": "%configuration.markdown.validate.referenceLinks.enabled.description%",
"default": "warning",
"enum": [
"ignore",
"warning",
"error"
]
},
"markdown.validate.fragmentLinks.enabled": {
"type": "string",
"scope": "resource",
"markdownDescription": "%configuration.markdown.validate.fragmentLinks.enabled.description%",
"default": "warning",
"enum": [
"ignore",
"warning",
"error"
]
},
"markdown.validate.fileLinks.enabled": {
"type": "string",
"scope": "resource",
"markdownDescription": "%configuration.markdown.validate.fileLinks.enabled.description%",
"default": "warning",
"enum": [
"ignore",
"warning",
"error"
]
},
"markdown.validate.fileLinks.markdownFragmentLinks": {
"type": "string",
"scope": "resource",
"markdownDescription": "%configuration.markdown.validate.fileLinks.markdownFragmentLinks.description%",
"default": "inherit",
"enum": [
"inherit",
"ignore",
"warning",
"error"
]
},
"markdown.validate.ignoredLinks": {
"type": "array",
"scope": "resource",
"markdownDescription": "%configuration.markdown.validate.ignoredLinks.description%",
"items": {
"type": "string"
}
},
"markdown.validate.unusedLinkDefinitions.enabled": {
"type": "string",
"scope": "resource",
"markdownDescription": "%configuration.markdown.validate.unusedLinkDefinitions.description%",
"default": "hint",
"enum": [
"ignore",
"hint",
"warning",
"error"
]
},
"markdown.validate.duplicateLinkDefinitions.enabled": {
"type": "string",
"scope": "resource",
"markdownDescription": "%configuration.markdown.validate.duplicateLinkDefinitions.description%",
"default": "warning",
"enum": [
"ignore",
"warning",
"error"
]
}
}
},
{
"title": "%configuration.preview%",
"order": 23,
"properties": {
"markdown.styles": {
"type": "array",
"items": {
"type": "string"
},
"default": [],
"markdownDescription": "%markdown.styles.dec%",
"scope": "resource"
},
"markdown.preview.breaks": {
"type": "boolean",
"default": false,
"markdownDescription": "%markdown.preview.breaks.desc%",
"scope": "resource"
},
"markdown.preview.linkify": {
"type": "boolean",
"default": true,
"description": "%markdown.preview.linkify%",
"scope": "resource"
},
"markdown.preview.typographer": {
"type": "boolean",
"default": false,
"description": "%markdown.preview.typographer%",
"scope": "resource"
},
"markdown.preview.fontFamily": {
"type": "string",
"default": "-apple-system, BlinkMacSystemFont, 'Segoe WPC', 'Segoe UI', system-ui, 'Ubuntu', 'Droid Sans', sans-serif",
"description": "%markdown.preview.fontFamily.desc%",
"scope": "resource"
},
"markdown.preview.fontSize": {
"type": "number",
"default": 14,
"description": "%markdown.preview.fontSize.desc%",
"scope": "resource"
},
"markdown.preview.lineHeight": {
"type": "number",
"default": 1.6,
"description": "%markdown.preview.lineHeight.desc%",
"scope": "resource"
},
"markdown.preview.scrollPreviewWithEditor": {
"type": "boolean",
"default": true,
"description": "%markdown.preview.scrollPreviewWithEditor.desc%",
"scope": "resource"
},
"markdown.preview.markEditorSelection": {
"type": "boolean",
"default": false,
"description": "%markdown.preview.markEditorSelection.desc%",
"scope": "resource"
},
"markdown.preview.scrollEditorWithPreview": {
"type": "boolean",
"default": true,
"description": "%markdown.preview.scrollEditorWithPreview.desc%",
"scope": "resource"
},
"markdown.preview.doubleClickToSwitchToEditor": {
"type": "boolean",
"default": false,
"description": "%markdown.preview.doubleClickToSwitchToEditor.desc%",
"scope": "resource"
},
"markdown.preview.openMarkdownLinks": {
"type": "string",
"default": "inPreview",
"description": "%configuration.markdown.preview.openMarkdownLinks.description%",
"scope": "resource",
"enum": [
"inPreview",
"inEditor"
],
"enumDescriptions": [
"%configuration.markdown.preview.openMarkdownLinks.inPreview%",
"%configuration.markdown.preview.openMarkdownLinks.inEditor%"
]
},
"markdown.preview.frontMatter": {
"type": "string",
"default": "table",
"scope": "resource",
"markdownDescription": "%configuration.markdown.preview.frontMatter.description%",
"enum": [
"hide",
"codeBlock",
"table"
],
"enumDescriptions": [
"%configuration.markdown.preview.frontMatter.hide%",
"%configuration.markdown.preview.frontMatter.codeBlock%",
"%configuration.markdown.preview.frontMatter.table%"
]
}
}
},
{
"title": "%configuration.advanced%",
"order": 24,
"properties": {
"markdown.trace.server": {
"type": "string",
"scope": "window",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"description": "%markdown.trace.server.desc%"
},
"markdown.server.log": {
"type": "string",
"scope": "window",
"enum": [
"off",
"debug",
"trace"
],
"default": "off",
"description": "%markdown.server.log.desc%"
}
}
}
],
"configurationDefaults": {
"[markdown]": {
"editor.wordWrap": "on",
"editor.quickSuggestions": {
"comments": "off",
"strings": "off",
"other": "off"
}
}
},
"jsonValidation": [
{
"fileMatch": "package.json",
"url": "./schemas/package.schema.json"
}
],
"markdown.previewStyles": [
"./media/markdown.css",
"./media/highlight.css"
],
"markdown.previewScripts": [
{
"path": "./media/index.js",
"type": "module"
}
],
"customEditors": [
{
"viewType": "vscode.markdown.preview.editor",
"displayName": "Markdown Preview",
"priority": {
"diffEditor": "option",
"textEditor": "option"
},
"selector": [
{
"filenamePattern": "*.md"
}
]
},
{
"viewType": "vscode.markdown.editor",
"displayName": "Markdown Editor",
"priority": {
"diffEditor": "explicit",
"textEditor": "option"
},
"selector": [
{
"filenamePattern": "*.md"
}
]
}
]
},
"scripts": {
"compile": "npm-run-all2 -lp build-ext build-webview build-notebook build-markdown-editor",
"watch": "npm-run-all2 -lp watch-ext watch-webview watch-notebook watch-markdown-editor",
"build-ext": "gulp compile-extension:markdown-language-features",
"watch-ext": "gulp watch-extension:markdown-language-features",
"build-notebook": "node ./esbuild.notebook.mts",
"watch-notebook": "node ./esbuild.notebook.mts --watch",
"build-webview": "node ./esbuild.webview.mts",
"watch-webview": "node ./esbuild.webview.mts --watch",
"build-markdown-editor": "node ./esbuild.markdownEditor.mts",
"watch-markdown-editor": "node ./esbuild.markdownEditor.mts --watch",
"update-markdown-editor-package-json": "node ./scripts/updateMarkdownEditorPackageJson.mts --write",
"check-markdown-editor-package-json": "node ./scripts/updateMarkdownEditorPackageJson.mts --check",
"test-markdown-editor-package-json": "node --test ./scripts/updateMarkdownEditorPackageJson.test.mts",
"compile-web": "npm-run-all2 -lp bundle-web typecheck-web",
"bundle-web": "node ./esbuild.browser.mts",
"typecheck-web": "node ../../node_modules/@typescript/native/lib/tsc.js --project ./tsconfig.browser.json --noEmit",
"watch-web": "npm-run-all2 -lp watch-bundle-web watch-typecheck-web",
"watch-bundle-web": "node ./esbuild.browser.mts --watch",
"watch-typecheck-web": "node ../../node_modules/@typescript/native/lib/tsc.js --project ./tsconfig.browser.json --noEmit --watch"
},
"dependencies": {
"@vscode/extension-telemetry": "^0.9.8",
"@vscode/markdown-editor": "^0.0.2-52",
"dompurify": "^3.4.10",
"highlight.js": "^11.8.0",
"katex": "^0.16.33",
"markdown-it": "^14.2.0",
"mermaid": "^11.15.0",
"morphdom": "^2.7.7",
"picomatch": "^2.3.2",
"punycode": "^2.3.1",
"vscode-languageclient": "^8.0.2",
"vscode-languageserver-textdocument": "^1.0.11",
"vscode-markdown-languageserver": "0.5.0",
"vscode-uri": "^3.0.3",
"yaml": "^2.8.3"
},
"devDependencies": {
"@types/dompurify": "^3.0.5",
"@types/lodash.throttle": "^4.1.9",
"@types/markdown-it": "^14.1.2",
"@types/node": "24.x",
"@types/picomatch": "^2.3.0",
"@types/vscode-notebook-renderer": "^1.60.0",
"@types/vscode-webview": "^1.57.0",
"@vscode/markdown-it-katex": "^1.1.1",
"lodash.throttle": "^4.1.1",
"vscode-languageserver-types": "^3.17.2",
"vscode-markdown-languageservice": "0.5.0"
},
"repository": {
"type": "git",
"url": "https://github.com/microsoft/vscode.git"
}
}