Skip to content

Commit

Permalink
Merge pull request #4398 from continuedev/dallin/configure-autocomple…
Browse files Browse the repository at this point in the history
…te-options

Remove configure autocomplete quick command
  • Loading branch information
sestinj authored Mar 1, 2025
2 parents 331aa85 + 30d227e commit 10d49de
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions extensions/vscode/src/commands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@ import { ContinueServerClient } from "core/continueServer/stubs/client";
import { EXTENSION_NAME } from "core/control-plane/env";
import { Core } from "core/core";
import { walkDirAsync } from "core/indexing/walkDir";
import { GlobalContext } from "core/util/GlobalContext";
import { getConfigJsonPath, getDevDataFilePath } from "core/util/paths";
import { getDevDataFilePath } from "core/util/paths";
import { Telemetry } from "core/util/posthog";
import readLastLines from "read-last-lines";
import * as vscode from "vscode";
Expand Down Expand Up @@ -918,9 +917,6 @@ const getCommandsMap: (
{
label: quickPickStatusText(targetStatus),
},
{
label: "$(gear) Configure autocomplete options",
},
{
label: "$(feedback) Give feedback",
},
Expand All @@ -945,10 +941,6 @@ const getCommandsMap: (
targetStatus === StatusBarStatus.Enabled,
vscode.ConfigurationTarget.Global,
);
} else if (
selectedOption === "$(gear) Configure autocomplete options"
) {
ide.openFile(vscode.Uri.file(getConfigJsonPath()).toString());
} else if (
autocompleteModels.some((model) => model.title === selectedOption)
) {
Expand Down

0 comments on commit 10d49de

Please sign in to comment.