mirror of
https://github.com/coder/coder.git
synced 2025-07-12 00:14:10 +00:00
chore: move vscode local out of experiments (#5773)
We've been dogfooding the VS Code extension for a while, and it seems stable enough that it's overall positive to release!
This commit is contained in:
@ -9,9 +9,8 @@ import (
|
||||
type Experiment string
|
||||
|
||||
const (
|
||||
// ExperimentVSCodeLocal enables a workspace button to launch VSCode
|
||||
// and connect using the local VSCode extension.
|
||||
ExperimentVSCodeLocal Experiment = "vscode_local"
|
||||
// Add new experiments here!
|
||||
// ExperimentExample Experiment = "example"
|
||||
)
|
||||
|
||||
var (
|
||||
@ -19,9 +18,7 @@ var (
|
||||
// users to opt-in to via --experimental='*'.
|
||||
// Experiments that are not ready for consumption by all users should
|
||||
// not be included here and will be essentially hidden.
|
||||
ExperimentsAll = Experiments{
|
||||
ExperimentVSCodeLocal,
|
||||
}
|
||||
ExperimentsAll = Experiments{}
|
||||
)
|
||||
|
||||
// Experiments is a list of experiments that are enabled for the deployment.
|
||||
|
Reference in New Issue
Block a user