mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-25 11:08:51 +01:00
* Fix for #26659. Clicking on a local file link will open up the editor on a separate editor group (new or reuse existing one). * Fix for #26659: Add way to open Markdown links in a different editor group Adding "markdown.editor.openMarkdownLinks" setting to specify where links to markdown files should open (current editor group by default).
This commit is contained in:
committed by
Matt Bierner
parent
db9733d1e3
commit
c307d73664
@@ -269,6 +269,20 @@
|
||||
"%configuration.markdown.preview.openMarkdownLinks.inEditor%"
|
||||
]
|
||||
},
|
||||
"markdown.editor.openMarkdownLinks": {
|
||||
"type": "string",
|
||||
"default": "currentGroup",
|
||||
"description": "%configuration.markdown.editor.openMarkdownLinks.description%",
|
||||
"scope": "resource",
|
||||
"enum": [
|
||||
"currentGroup",
|
||||
"openToSide"
|
||||
],
|
||||
"enumDescriptions": [
|
||||
"%configuration.markdown.editor.openMarkdownLinks.inCurrentGroup%",
|
||||
"%configuration.markdown.editor.openMarkdownLinks.openToSide%"
|
||||
]
|
||||
},
|
||||
"markdown.trace": {
|
||||
"type": "string",
|
||||
"enum": [
|
||||
|
||||
Reference in New Issue
Block a user