Allowing configuring if markdown inserts a .md when completing paths to markdown files (#174882)

Fixes #174005
This commit is contained in:
Matt Bierner
2023-02-21 01:07:31 -06:00
committed by GitHub
parent 05abefc4cd
commit 784bbdab8f
4 changed files with 35 additions and 6 deletions

View File

@@ -10,6 +10,8 @@ export type ValidateEnabled = 'ignore' | 'warning' | 'error' | 'hint';
export interface Settings {
readonly markdown: {
readonly preferredMdPathExtensionStyle: 'auto' | 'includeExtension' | 'removeExtension';
readonly occurrencesHighlight: {
readonly enabled: boolean;
};