mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-23 18:19:12 +01:00
Missed that this extension was making `require` calls with dynamic names. I think the best approach is to convert it to use static imports instead. These files were already being loaded eagerly by `terminalSuggestMain` so it shouldn't be a big change Also makes `update-specs.js` be the source of truth for the packages to include instead of pulling in from the extension
11 lines
609 B
TypeScript
11 lines
609 B
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
export const enum SettingsIds {
|
|
SuggestPrefix = 'terminal.integrated.suggest',
|
|
CachedWindowsExecutableExtensions = 'terminal.integrated.suggest.windowsExecutableExtensions',
|
|
CachedWindowsExecutableExtensionsSuffixOnly = 'windowsExecutableExtensions',
|
|
}
|