Revert "Add experimental setting to define where files should be copied for markdown (#169454)" (#169615)

This reverts commit 1d6b47a005.
This commit is contained in:
Christof Marti
2022-12-20 10:03:12 +01:00
committed by GitHub
parent 95463122e0
commit b2121c2dbe
8 changed files with 26 additions and 211 deletions

View File

@@ -7,9 +7,9 @@ import * as vscode from 'vscode';
import { MdLanguageClient } from './client/client';
import { CommandManager } from './commandManager';
import { registerMarkdownCommands } from './commands/index';
import { registerPasteSupport } from './languageFeatures/copyFiles/copyPaste';
import { registerPasteSupport } from './languageFeatures/copyPaste';
import { registerDiagnosticSupport } from './languageFeatures/diagnostics';
import { registerDropIntoEditorSupport } from './languageFeatures/copyFiles/dropIntoEditor';
import { registerDropIntoEditorSupport } from './languageFeatures/dropIntoEditor';
import { registerFindFileReferenceSupport } from './languageFeatures/fileReferences';
import { registerUpdateLinksOnRename } from './languageFeatures/linkUpdater';
import { ILogger } from './logging';