Merge pull request #2460 from github/robertbrignull/selection-commond-vscode

Move selection-commands.ts to be in the vscode directory
This commit is contained in:
Robert
2023-05-31 12:27:17 +01:00
committed by GitHub
4 changed files with 5 additions and 5 deletions

View File

@@ -1,9 +1,9 @@
import { showAndLogErrorMessage } from "../helpers";
import { showAndLogErrorMessage } from "../../helpers";
import {
ExplorerSelectionCommandFunction,
TreeViewContextMultiSelectionCommandFunction,
TreeViewContextSingleSelectionCommandFunction,
} from "./commands";
} from "../commands";
// A hack to match types that are not an array, which is useful to help avoid
// misusing createSingleSelectionCommand, e.g. where T accidentally gets instantiated

View File

@@ -49,7 +49,7 @@ import { LocalDatabasesCommands } from "../common/commands";
import {
createMultiSelectionCommand,
createSingleSelectionCommand,
} from "../common/selection-commands";
} from "../common/vscode/selection-commands";
enum SortOrder {
NameAsc = "NameAsc",

View File

@@ -47,7 +47,7 @@ import { App } from "../common/app";
import { DisposableObject } from "../pure/disposable-object";
import { SkeletonQueryWizard } from "../skeleton-query-wizard";
import { LocalQueryRun } from "./local-query-run";
import { createMultiSelectionCommand } from "../common/selection-commands";
import { createMultiSelectionCommand } from "../common/vscode/selection-commands";
interface DatabaseQuickPickItem extends QuickPickItem {
databaseItem: DatabaseItem;

View File

@@ -59,7 +59,7 @@ import { tryOpenExternalFile } from "../common/vscode/external-files";
import {
createMultiSelectionCommand,
createSingleSelectionCommand,
} from "../common/selection-commands";
} from "../common/vscode/selection-commands";
/**
* query-history-manager.ts