Skip to content

Commit 59ddc32

Browse files
committed
1 parent 93c91eb commit 59ddc32

4 files changed

Lines changed: 0 additions & 5 deletions

File tree

src/vs/platform/configuration/common/configurationRegistry.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,6 @@ export const enum ConfigurationScope {
110110
}
111111

112112
export interface IConfigurationPropertySchema extends IJSONSchema {
113-
overridable?: boolean;
114113
scope?: ConfigurationScope;
115114
included?: boolean;
116115
tags?: string[];
@@ -128,7 +127,6 @@ export interface IConfigurationNode {
128127
description?: string;
129128
properties?: { [path: string]: IConfigurationPropertySchema; };
130129
allOf?: IConfigurationNode[];
131-
overridable?: boolean;
132130
scope?: ConfigurationScope;
133131
extensionInfo?: IConfigurationExtensionInfo;
134132
}

src/vs/workbench/services/keybinding/browser/keybindingService.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -745,7 +745,6 @@ const keyboardConfiguration: IConfigurationNode = {
745745
'order': 15,
746746
'type': 'object',
747747
'title': nls.localize('keyboardConfigurationTitle', "Keyboard"),
748-
'overridable': true,
749748
'properties': {
750749
'keyboard.dispatch': {
751750
'type': 'string',

src/vs/workbench/services/keybinding/browser/keymapService.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -626,7 +626,6 @@ const keyboardConfiguration: IConfigurationNode = {
626626
'order': 15,
627627
'type': 'object',
628628
'title': nls.localize('keyboardConfigurationTitle', "Keyboard"),
629-
'overridable': true,
630629
'properties': {
631630
'keyboard.layout': {
632631
'type': 'string',

src/vs/workbench/services/keybinding/electron-browser/keybinding.contribution.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ const keyboardConfiguration: IConfigurationNode = {
1515
'order': 15,
1616
'type': 'object',
1717
'title': nls.localize('keyboardConfigurationTitle', "Keyboard"),
18-
'overridable': true,
1918
'properties': {
2019
'keyboard.touchbar.enabled': {
2120
'type': 'boolean',

0 commit comments

Comments
 (0)