Merge pull request #234306 from microsoft/osortega/find-history-default-insiders

Making find history default to workspace in insiders
This commit is contained in:
Osvaldo Ortega 2024-11-20 15:52:08 -08:00 коммит произвёл GitHub
Родитель ce8e5bb7c8 d4900d29af
Коммит d6f311dbf5
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -16,6 +16,7 @@ import { USUAL_WORD_SEPARATORS } from '../core/wordHelper.js';
import * as nls from '../../../nls.js';
import { AccessibilitySupport } from '../../../platform/accessibility/common/accessibility.js';
import { IConfigurationPropertySchema } from '../../../platform/configuration/common/configurationRegistry.js';
import product from '../../../platform/product/common/product.js';
//#region typed options
@ -1727,7 +1728,7 @@ class EditorFind extends BaseEditorOption<EditorOption.find, IEditorFindOptions,
'editor.find.history': {
type: 'string',
enum: ['never', 'workspace'],
default: defaults.findSearchHistory,
default: typeof product.quality === 'string' && product.quality !== 'stable' ? 'workspace' : 'none',
enumDescriptions: [
nls.localize('editor.find.history.never', 'Do not store search history from the find widget.'),
nls.localize('editor.find.history.workspace', 'Store search history across the active workspace'),