Skip to content

Commit

Permalink
fix: Hide explorer icon by default (#3986)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason3S authored Jan 2, 2025
1 parent b995b13 commit 3e4ac0e
Showing 3 changed files with 4 additions and 28 deletions.
18 changes: 4 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
@@ -234,12 +234,14 @@
{
"type": "webview",
"id": "cSpellInfoView",
"name": "Spell Checker"
"name": "Spell Checker",
"visibility": "hidden"
},
{
"id": "cSpellRegExpView",
"name": "Regular Expressions",
"when": "config.cSpell.experimental.enableRegexpView"
"when": "config.cSpell.experimental.enableRegexpView",
"visibility": "hidden"
}
],
"cspellPanel": [
@@ -265,12 +267,6 @@
},
"viewsWelcome": [],
"commands": [
{
"command": "cspell-info.showHelloWorld",
"title": "Hello World (Svelte): Show",
"enablement": "config.cSpell.experimental.enableSettingsViewerV2",
"category": "Spell"
},
{
"command": "cSpell.addWordToWorkspaceDictionary",
"category": "Spell",
@@ -1902,12 +1898,6 @@
"scope": "application",
"type": "boolean"
},
"cSpell.experimental.enableSettingsViewerV2": {
"default": false,
"markdownDescription": "Enable the Settings Viewer V2 Extension",
"scope": "application",
"type": "boolean"
},
"cSpell.experimental.symbols": {
"default": false,
"markdownDescription": "Experiment with executeDocumentSymbolProvider.\nThis feature is experimental and will be removed in the future.",
7 changes: 0 additions & 7 deletions packages/_server/spell-checker-config.schema.json
Original file line number Diff line number Diff line change
@@ -1360,13 +1360,6 @@
"scope": "application",
"type": "boolean"
},
"cSpell.experimental.enableSettingsViewerV2": {
"default": false,
"description": "Enable the Settings Viewer V2 Extension",
"markdownDescription": "Enable the Settings Viewer V2 Extension",
"scope": "application",
"type": "boolean"
},
"cSpell.experimental.symbols": {
"default": false,
"description": "Experiment with executeDocumentSymbolProvider. This feature is experimental and will be removed in the future.",
Original file line number Diff line number Diff line change
@@ -377,13 +377,6 @@ export interface ExperimentalSettings {
*/
'experimental.enableRegexpView'?: boolean;

/**
* Enable the Settings Viewer V2 Extension
* @scope application
* @default false
*/
'experimental.enableSettingsViewerV2'?: boolean;

/**
* Experiment with executeDocumentSymbolProvider.
* This feature is experimental and will be removed in the future.

0 comments on commit 3e4ac0e

Please sign in to comment.