src/vs/workbench/services/preferences/common/preferences.ts
355 LOC · 346 covered · 9 uncovered · 2 ranges · 18 concepts · 1 introducers · 11 tests
File neighbourhood
The centred file is linked to every concept that introduces one of its ranges, every test that runs code from the file, and the gray connector concepts standing between those tests and the file's own introducer concepts. Undirected links join concepts to every file where they introduce source and concepts to the tests they introduce; arrows show specialization between the displayed concepts and bridge only concepts omitted from this view. Concept colors match the source ranges below; connector concepts have no source color and are shown in gray.
Focused file, its introducer and connector concepts, their introduced files, and tests that run code from the file
In the embedded map, ordinary wheel input scrolls the page; use the visible controls to zoom and drag to pan. Open the full-screen map for canvas navigation: wheel pans, Ctrl/Command plus wheel zooms, and arrow keys pan when this region is focused. On touch screens, open the full-screen map to pan or pinch. If JavaScript or WebGL is unavailable, use the related-file, concept, and source links on this page.
Graph controls are ready.
Interactive rendering requires JavaScript and WebGL. Use the related-file, concept, and source links on this page while the interactive map is unavailable.
/*---------------------------------------------------------------------------------------------
preferences.ts ×2
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import { IStringDictionary } from '../../../../base/common/collections.js';
import { Event } from '../../../../base/common/event.js';
import { IMatch } from '../../../../base/common/filters.js';
import { IJSONSchema, IJSONSchemaMap } from '../../../../base/common/jsonSchema.js';
import { ResolvedKeybinding } from '../../../../base/common/keybindings.js';
import { URI } from '../../../../base/common/uri.js';
import { IRange } from '../../../../editor/common/core/range.js';
import { IEditorContribution } from '../../../../editor/common/editorCommon.js';
import { ConfigurationTarget } from '../../../../platform/configuration/common/configuration.js';
import { ConfigurationDefaultValueSource, ConfigurationScope, EditPresentationTypes, IExtensionInfo } from '../../../../platform/configuration/common/configurationRegistry.js';
import { IEditorOptions } from '../../../../platform/editor/common/editor.js';
import { IExtensionDescription } from '../../../../platform/extensions/common/extensions.js';
import { createDecorator } from '../../../../platform/instantiation/common/instantiation.js';
import { ResolvedKeybindingItem } from '../../../../platform/keybinding/common/resolvedKeybindingItem.js';
import { DEFAULT_EDITOR_ASSOCIATION, IEditorPane } from '../../../common/editor.js';
import { EditorInput } from '../../../common/editor/editorInput.js';
import { Settings2EditorModel } from './preferencesModels.js';
export enum SettingValueType {
Null = 'null',
Enum = 'enum',
String = 'string',
MultilineString = 'multiline-string',
Integer = 'integer',
Number = 'number',
Boolean = 'boolean',
Array = 'array',
Exclude = 'exclude',
Include = 'include',
Complex = 'complex',
NullableInteger = 'nullable-integer',
NullableNumber = 'nullable-number',
Object = 'object',
BooleanObject = 'boolean-object',
LanguageTag = 'language-tag',
ExtensionToggle = 'extension-toggle',
ComplexObject = 'complex-object',
}
export interface ISettingsGroup {
id: string;
range: IRange;
title: string;
titleRange: IRange;
sections: ISettingsSection[];
order?: number;
extensionInfo?: IExtensionInfo;
}
export interface ISettingsSection {
title?: string;
settings: ISetting[];
}
export interface ISetting {
range: IRange;
key: string;
keyRange: IRange;
value: any;
valueRange: IRange;
description: string[];
keywords?: string[];
descriptionIsMarkdown?: boolean;
descriptionRanges: IRange[];
overrides?: ISetting[];
overrideOf?: ISetting;
deprecationMessage?: string;
deprecationMessageIsMarkdown?: boolean;
scope?: ConfigurationScope;
type?: string | string[];
order?: number;
arrayItemType?: string;
objectProperties?: IJSONSchemaMap;
objectPatternProperties?: IJSONSchemaMap;
objectAdditionalProperties?: boolean | IJSONSchema;
propertyNames?: IJSONSchema;
enum?: string[];
enumDescriptions?: string[];
enumDescriptionsAreMarkdown?: boolean;
uniqueItems?: boolean;
tags?: string[];
disallowSyncIgnore?: boolean;
restricted?: boolean;
extensionInfo?: IExtensionInfo;
validator?: (value: any) => string | null;
enumItemLabels?: string[];
editPresentation?: EditPresentationTypes;
nonLanguageSpecificDefaultValueSource?: ConfigurationDefaultValueSource;
isLanguageTagSetting?: boolean;
categoryLabel?: string;
// Internal properties
allKeysAreBoolean?: boolean;
displayExtensionId?: string;
title?: string;
extensionGroupTitle?: string;
internalOrder?: number;
}
export interface IExtensionSetting extends ISetting {
extensionName?: string;
extensionPublisher?: string;
}
export interface ISearchResult {
filterMatches: ISettingMatch[];
exactMatch: boolean;
metadata?: IFilterMetadata;
}
export interface ISearchResultGroup {
id: string;
label: string;
result: ISearchResult;
order: number;
}
export interface IFilterResult {
query?: string;
filteredGroups: ISettingsGroup[];
allGroups: ISettingsGroup[];
matches: IRange[];
metadata?: IStringDictionary<IFilterMetadata>;
exactMatch?: boolean;
}
/**
* The ways a setting could match a query,
* sorted in increasing order of relevance.
*/
export enum SettingMatchType {
None = 0,
LanguageTagSettingMatch = 1 << 0,
RemoteMatch = 1 << 1,
NonContiguousQueryInSettingId = 1 << 2,
DescriptionOrValueMatch = 1 << 3,
NonContiguousWordsInSettingsLabel = 1 << 4,
ContiguousWordsInSettingsLabel = 1 << 5,
ContiguousQueryInSettingId = 1 << 6,
AllWordsInSettingsLabel = 1 << 7,
ExactMatch = 1 << 8,
}
export const SettingKeyMatchTypes = (SettingMatchType.AllWordsInSettingsLabel
| SettingMatchType.ContiguousWordsInSettingsLabel
| SettingMatchType.NonContiguousWordsInSettingsLabel
| SettingMatchType.NonContiguousQueryInSettingId
| SettingMatchType.ContiguousQueryInSettingId);
export interface ISettingMatch {
setting: ISetting;
matches: IRange[] | null;
matchType: SettingMatchType;
keyMatchScore: number;
score: number;
providerName?: string;
}
export interface IScoredResults {
[key: string]: IRemoteSetting;
}
export interface IRemoteSetting {
score: number;
key: string;
id: string;
defaultValue: string;
description: string;
packageId: string;
extensionName?: string;
extensionPublisher?: string;
}
export interface IFilterMetadata {
requestUrl: string;
requestBody: string;
timestamp: number;
duration: number;
scoredResults: IScoredResults;
/** The number of requests made, since requests are split by number of filters */
requestCount?: number;
/** The name of the server that actually served the request */
context: string;
}
export interface IPreferencesEditorModel<T> {
uri?: URI;
getPreference(key: string): T | undefined;
dispose(): void;
}
export type IGroupFilter = (group: ISettingsGroup) => boolean | null;
export type ISettingMatcher = (setting: ISetting, group: ISettingsGroup) => { matches: IRange[]; matchType: SettingMatchType; keyMatchScore: number; score: number } | null;
export interface ISettingsEditorModel extends IPreferencesEditorModel<ISetting> {
readonly onDidChangeGroups: Event<void>;
settingsGroups: ISettingsGroup[];
filterSettings(filter: string, groupFilter: IGroupFilter, settingMatcher: ISettingMatcher): ISettingMatch[];
updateResultGroup(id: string, resultGroup: ISearchResultGroup | undefined): IFilterResult | undefined;
}
export interface ISettingsEditorOptions extends IEditorOptions {
target?: ConfigurationTarget;
folderUri?: URI;
query?: string;
/**
* Only works when opening the json settings file. Use `query` for settings editor.
*/
revealSetting?: {
key: string;
edit?: boolean;
};
focusSearch?: boolean;
}
export interface IOpenSettingsOptions extends ISettingsEditorOptions {
jsonEditor?: boolean;
openToSide?: boolean;
groupId?: number;
}
export function validateSettingsEditorOptions(options: ISettingsEditorOptions): ISettingsEditorOptions {
return {
// Inherit provided options
...options,
// Enforce some options for settings specifically
override: DEFAULT_EDITOR_ASSOCIATION.id,
pinned: true
};
}
export interface IKeybindingsEditorModel<T> extends IPreferencesEditorModel<T> {
}
export interface IKeybindingsEditorOptions extends IEditorOptions {
query?: string;
}
export interface IOpenKeybindingsEditorOptions extends IKeybindingsEditorOptions {
groupId?: number;
}
export const IPreferencesService = createDecorator<IPreferencesService>('preferencesService');
export interface IPreferencesService {
readonly _serviceBrand: undefined;
readonly onDidDefaultSettingsContentChanged: Event<URI>;
userSettingsResource: URI;
workspaceSettingsResource: URI | null;
getFolderSettingsResource(resource: URI): URI | null;
createPreferencesEditorModel(uri: URI): Promise<IPreferencesEditorModel<ISetting> | null>;
getDefaultSettingsContent(uri: URI): string | undefined;
hasDefaultSettingsContent(uri: URI): boolean;
createSettings2EditorModel(): Settings2EditorModel; // TODO
openPreferences(): Promise<void>;
openRawDefaultSettings(): Promise<IEditorPane | undefined>;
openSettings(options?: IOpenSettingsOptions): Promise<IEditorPane | undefined>;
openApplicationSettings(options?: IOpenSettingsOptions): Promise<IEditorPane | undefined>;
openUserSettings(options?: IOpenSettingsOptions): Promise<IEditorPane | undefined>;
openRemoteSettings(options?: IOpenSettingsOptions): Promise<IEditorPane | undefined>;
openWorkspaceSettings(options?: IOpenSettingsOptions): Promise<IEditorPane | undefined>;
openFolderSettings(options: IOpenSettingsOptions & { folderUri: IOpenSettingsOptions['folderUri'] }): Promise<IEditorPane | undefined>;
openGlobalKeybindingSettings(textual: boolean, options?: IOpenKeybindingsEditorOptions): Promise<void>;
openDefaultKeybindingsFile(): Promise<IEditorPane | undefined>;
openLanguageSpecificSettings(languageId: string, options?: IOpenSettingsOptions): Promise<IEditorPane | undefined>;
getEditableSettingsURI(configurationTarget: ConfigurationTarget, resource?: URI): Promise<URI | null>;
getSetting(settingId: string): ISetting | undefined;
createSplitJsonEditorInput(configurationTarget: ConfigurationTarget, resource: URI): EditorInput;
}
export interface KeybindingMatch {
ctrlKey?: boolean;
shiftKey?: boolean;
altKey?: boolean;
metaKey?: boolean;
keyCode?: boolean;
}
export interface KeybindingMatches {
firstPart: KeybindingMatch;
chordPart: KeybindingMatch;
}
export interface IKeybindingItemEntry {
id: string;
templateId: string;
keybindingItem: IKeybindingItem;
commandIdMatches?: IMatch[];
commandLabelMatches?: IMatch[];
commandDefaultLabelMatches?: IMatch[];
sourceMatches?: IMatch[];
extensionIdMatches?: IMatch[];
extensionLabelMatches?: IMatch[];
whenMatches?: IMatch[];
keybindingMatches?: KeybindingMatches;
}
export interface IKeybindingItem {
keybinding: ResolvedKeybinding;
keybindingItem: ResolvedKeybindingItem;
commandLabel: string;
commandDefaultLabel: string;
command: string;
source: string | IExtensionDescription;
when: string;
}
export interface IKeybindingsEditorPane extends IEditorPane {
readonly activeKeybindingEntry: IKeybindingItemEntry | null;
readonly onDefineWhenExpression: Event<IKeybindingItemEntry>;
readonly onLayout: Event<void>;
search(filter: string): void;
focusSearch(): void;
clearSearchResults(): void;
focusKeybindings(): void;
recordSearchKeys(): void;
toggleSortByPrecedence(): void;
selectKeybinding(keybindingEntry: IKeybindingItemEntry): void;
defineKeybinding(keybindingEntry: IKeybindingItemEntry, add: boolean): Promise<void>;
defineWhenExpression(keybindingEntry: IKeybindingItemEntry): void;
updateKeybinding(keybindingEntry: IKeybindingItemEntry, key: string, when: string | undefined): Promise<any>;
removeKeybinding(keybindingEntry: IKeybindingItemEntry): Promise<any>;
resetKeybinding(keybindingEntry: IKeybindingItemEntry): Promise<any>;
copyKeybinding(keybindingEntry: IKeybindingItemEntry): Promise<void>;
copyKeybindingCommand(keybindingEntry: IKeybindingItemEntry): Promise<void>;
showSimilarKeybindings(keybindingEntry: IKeybindingItemEntry): void;
}
export const DEFINE_KEYBINDING_EDITOR_CONTRIB_ID = 'editor.contrib.defineKeybinding';
export interface IDefineKeybindingEditorContribution extends IEditorContribution {
showDefineKeybindingWidget(): void;
}
export const FOLDER_SETTINGS_PATH = '.vscode/settings.json';
export const DEFAULT_SETTINGS_EDITOR_SETTING = 'workbench.settings.openDefaultSettings';
export const USE_SPLIT_JSON_SETTING = 'workbench.settings.useSplitJSON';
export const ALWAYS_SHOW_ADVANCED_SETTINGS_SETTING = 'workbench.settings.alwaysShowAdvancedSettings';
export const SETTINGS_AUTHORITY = 'settings';