123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892 |
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
- else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
- return c > 3 && r && Object.defineProperty(target, key, r), r;
- };
- var __param = (this && this.__param) || function (paramIndex, decorator) {
- return function (target, key) { decorator(target, key, paramIndex); }
- };
- var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
- function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
- return new (P || (P = Promise))(function (resolve, reject) {
- function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
- function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
- function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
- step((generator = generator.apply(thisArg, _arguments || [])).next());
- });
- };
- import { Delayer } from '../../../base/common/async.js';
- import { Disposable } from '../../../base/common/lifecycle.js';
- import * as strings from '../../../base/common/strings.js';
- import { EditorAction, EditorCommand, MultiEditorAction, registerEditorAction, registerEditorCommand, registerEditorContribution, registerMultiEditorAction } from '../../browser/editorExtensions.js';
- import { EditorContextKeys } from '../../common/editorContextKeys.js';
- import { CONTEXT_FIND_INPUT_FOCUSED, CONTEXT_FIND_WIDGET_VISIBLE, CONTEXT_REPLACE_INPUT_FOCUSED, FindModelBoundToEditorModel, FIND_IDS, ToggleCaseSensitiveKeybinding, TogglePreserveCaseKeybinding, ToggleRegexKeybinding, ToggleSearchScopeKeybinding, ToggleWholeWordKeybinding } from './findModel.js';
- import { FindOptionsWidget } from './findOptionsWidget.js';
- import { FindReplaceState } from './findState.js';
- import { FindWidget } from './findWidget.js';
- import * as nls from '../../../nls.js';
- import { MenuId } from '../../../platform/actions/common/actions.js';
- import { IClipboardService } from '../../../platform/clipboard/common/clipboardService.js';
- import { ContextKeyExpr, IContextKeyService } from '../../../platform/contextkey/common/contextkey.js';
- import { IContextViewService } from '../../../platform/contextview/browser/contextView.js';
- import { IKeybindingService } from '../../../platform/keybinding/common/keybinding.js';
- import { INotificationService } from '../../../platform/notification/common/notification.js';
- import { IStorageService } from '../../../platform/storage/common/storage.js';
- import { IThemeService } from '../../../platform/theme/common/themeService.js';
- const SEARCH_STRING_MAX_LENGTH = 524288;
- export function getSelectionSearchString(editor, seedSearchStringFromSelection = 'single', seedSearchStringFromNonEmptySelection = false) {
- if (!editor.hasModel()) {
- return null;
- }
- const selection = editor.getSelection();
- // if selection spans multiple lines, default search string to empty
- if ((seedSearchStringFromSelection === 'single' && selection.startLineNumber === selection.endLineNumber)
- || seedSearchStringFromSelection === 'multiple') {
- if (selection.isEmpty()) {
- const wordAtPosition = editor.getConfiguredWordAtPosition(selection.getStartPosition());
- if (wordAtPosition && (false === seedSearchStringFromNonEmptySelection)) {
- return wordAtPosition.word;
- }
- }
- else {
- if (editor.getModel().getValueLengthInRange(selection) < SEARCH_STRING_MAX_LENGTH) {
- return editor.getModel().getValueInRange(selection);
- }
- }
- }
- return null;
- }
- let CommonFindController = class CommonFindController extends Disposable {
- constructor(editor, contextKeyService, storageService, clipboardService) {
- super();
- this._editor = editor;
- this._findWidgetVisible = CONTEXT_FIND_WIDGET_VISIBLE.bindTo(contextKeyService);
- this._contextKeyService = contextKeyService;
- this._storageService = storageService;
- this._clipboardService = clipboardService;
- this._updateHistoryDelayer = new Delayer(500);
- this._state = this._register(new FindReplaceState());
- this.loadQueryState();
- this._register(this._state.onFindReplaceStateChange((e) => this._onStateChanged(e)));
- this._model = null;
- this._register(this._editor.onDidChangeModel(() => {
- let shouldRestartFind = (this._editor.getModel() && this._state.isRevealed);
- this.disposeModel();
- this._state.change({
- searchScope: null,
- matchCase: this._storageService.getBoolean('editor.matchCase', 1 /* WORKSPACE */, false),
- wholeWord: this._storageService.getBoolean('editor.wholeWord', 1 /* WORKSPACE */, false),
- isRegex: this._storageService.getBoolean('editor.isRegex', 1 /* WORKSPACE */, false),
- preserveCase: this._storageService.getBoolean('editor.preserveCase', 1 /* WORKSPACE */, false)
- }, false);
- if (shouldRestartFind) {
- this._start({
- forceRevealReplace: false,
- seedSearchStringFromSelection: 'none',
- seedSearchStringFromNonEmptySelection: false,
- seedSearchStringFromGlobalClipboard: false,
- shouldFocus: 0 /* NoFocusChange */,
- shouldAnimate: false,
- updateSearchScope: false,
- loop: this._editor.getOption(35 /* find */).loop
- });
- }
- }));
- }
- get editor() {
- return this._editor;
- }
- static get(editor) {
- return editor.getContribution(CommonFindController.ID);
- }
- dispose() {
- this.disposeModel();
- super.dispose();
- }
- disposeModel() {
- if (this._model) {
- this._model.dispose();
- this._model = null;
- }
- }
- _onStateChanged(e) {
- this.saveQueryState(e);
- if (e.isRevealed) {
- if (this._state.isRevealed) {
- this._findWidgetVisible.set(true);
- }
- else {
- this._findWidgetVisible.reset();
- this.disposeModel();
- }
- }
- if (e.searchString) {
- this.setGlobalBufferTerm(this._state.searchString);
- }
- }
- saveQueryState(e) {
- if (e.isRegex) {
- this._storageService.store('editor.isRegex', this._state.actualIsRegex, 1 /* WORKSPACE */, 0 /* USER */);
- }
- if (e.wholeWord) {
- this._storageService.store('editor.wholeWord', this._state.actualWholeWord, 1 /* WORKSPACE */, 0 /* USER */);
- }
- if (e.matchCase) {
- this._storageService.store('editor.matchCase', this._state.actualMatchCase, 1 /* WORKSPACE */, 0 /* USER */);
- }
- if (e.preserveCase) {
- this._storageService.store('editor.preserveCase', this._state.actualPreserveCase, 1 /* WORKSPACE */, 0 /* USER */);
- }
- }
- loadQueryState() {
- this._state.change({
- matchCase: this._storageService.getBoolean('editor.matchCase', 1 /* WORKSPACE */, this._state.matchCase),
- wholeWord: this._storageService.getBoolean('editor.wholeWord', 1 /* WORKSPACE */, this._state.wholeWord),
- isRegex: this._storageService.getBoolean('editor.isRegex', 1 /* WORKSPACE */, this._state.isRegex),
- preserveCase: this._storageService.getBoolean('editor.preserveCase', 1 /* WORKSPACE */, this._state.preserveCase)
- }, false);
- }
- isFindInputFocused() {
- return !!CONTEXT_FIND_INPUT_FOCUSED.getValue(this._contextKeyService);
- }
- getState() {
- return this._state;
- }
- closeFindWidget() {
- this._state.change({
- isRevealed: false,
- searchScope: null
- }, false);
- this._editor.focus();
- }
- toggleCaseSensitive() {
- this._state.change({ matchCase: !this._state.matchCase }, false);
- if (!this._state.isRevealed) {
- this.highlightFindOptions();
- }
- }
- toggleWholeWords() {
- this._state.change({ wholeWord: !this._state.wholeWord }, false);
- if (!this._state.isRevealed) {
- this.highlightFindOptions();
- }
- }
- toggleRegex() {
- this._state.change({ isRegex: !this._state.isRegex }, false);
- if (!this._state.isRevealed) {
- this.highlightFindOptions();
- }
- }
- togglePreserveCase() {
- this._state.change({ preserveCase: !this._state.preserveCase }, false);
- if (!this._state.isRevealed) {
- this.highlightFindOptions();
- }
- }
- toggleSearchScope() {
- if (this._state.searchScope) {
- this._state.change({ searchScope: null }, true);
- }
- else {
- if (this._editor.hasModel()) {
- let selections = this._editor.getSelections();
- selections.map(selection => {
- if (selection.endColumn === 1 && selection.endLineNumber > selection.startLineNumber) {
- selection = selection.setEndPosition(selection.endLineNumber - 1, this._editor.getModel().getLineMaxColumn(selection.endLineNumber - 1));
- }
- if (!selection.isEmpty()) {
- return selection;
- }
- return null;
- }).filter(element => !!element);
- if (selections.length) {
- this._state.change({ searchScope: selections }, true);
- }
- }
- }
- }
- setSearchString(searchString) {
- if (this._state.isRegex) {
- searchString = strings.escapeRegExpCharacters(searchString);
- }
- this._state.change({ searchString: searchString }, false);
- }
- highlightFindOptions(ignoreWhenVisible = false) {
- // overwritten in subclass
- }
- _start(opts, newState) {
- return __awaiter(this, void 0, void 0, function* () {
- this.disposeModel();
- if (!this._editor.hasModel()) {
- // cannot do anything with an editor that doesn't have a model...
- return;
- }
- let stateChanges = Object.assign(Object.assign({}, newState), { isRevealed: true });
- if (opts.seedSearchStringFromSelection === 'single') {
- let selectionSearchString = getSelectionSearchString(this._editor, opts.seedSearchStringFromSelection, opts.seedSearchStringFromNonEmptySelection);
- if (selectionSearchString) {
- if (this._state.isRegex) {
- stateChanges.searchString = strings.escapeRegExpCharacters(selectionSearchString);
- }
- else {
- stateChanges.searchString = selectionSearchString;
- }
- }
- }
- else if (opts.seedSearchStringFromSelection === 'multiple' && !opts.updateSearchScope) {
- let selectionSearchString = getSelectionSearchString(this._editor, opts.seedSearchStringFromSelection);
- if (selectionSearchString) {
- stateChanges.searchString = selectionSearchString;
- }
- }
- if (!stateChanges.searchString && opts.seedSearchStringFromGlobalClipboard) {
- let selectionSearchString = yield this.getGlobalBufferTerm();
- if (!this._editor.hasModel()) {
- // the editor has lost its model in the meantime
- return;
- }
- if (selectionSearchString) {
- stateChanges.searchString = selectionSearchString;
- }
- }
- // Overwrite isReplaceRevealed
- if (opts.forceRevealReplace || stateChanges.isReplaceRevealed) {
- stateChanges.isReplaceRevealed = true;
- }
- else if (!this._findWidgetVisible.get()) {
- stateChanges.isReplaceRevealed = false;
- }
- if (opts.updateSearchScope) {
- let currentSelections = this._editor.getSelections();
- if (currentSelections.some(selection => !selection.isEmpty())) {
- stateChanges.searchScope = currentSelections;
- }
- }
- stateChanges.loop = opts.loop;
- this._state.change(stateChanges, false);
- if (!this._model) {
- this._model = new FindModelBoundToEditorModel(this._editor, this._state);
- }
- });
- }
- start(opts, newState) {
- return this._start(opts, newState);
- }
- moveToNextMatch() {
- if (this._model) {
- this._model.moveToNextMatch();
- return true;
- }
- return false;
- }
- moveToPrevMatch() {
- if (this._model) {
- this._model.moveToPrevMatch();
- return true;
- }
- return false;
- }
- replace() {
- if (this._model) {
- this._model.replace();
- return true;
- }
- return false;
- }
- replaceAll() {
- if (this._model) {
- this._model.replaceAll();
- return true;
- }
- return false;
- }
- selectAllMatches() {
- if (this._model) {
- this._model.selectAllMatches();
- this._editor.focus();
- return true;
- }
- return false;
- }
- getGlobalBufferTerm() {
- return __awaiter(this, void 0, void 0, function* () {
- if (this._editor.getOption(35 /* find */).globalFindClipboard
- && this._editor.hasModel()
- && !this._editor.getModel().isTooLargeForSyncing()) {
- return this._clipboardService.readFindText();
- }
- return '';
- });
- }
- setGlobalBufferTerm(text) {
- if (this._editor.getOption(35 /* find */).globalFindClipboard
- && this._editor.hasModel()
- && !this._editor.getModel().isTooLargeForSyncing()) {
- // intentionally not awaited
- this._clipboardService.writeFindText(text);
- }
- }
- };
- CommonFindController.ID = 'editor.contrib.findController';
- CommonFindController = __decorate([
- __param(1, IContextKeyService),
- __param(2, IStorageService),
- __param(3, IClipboardService)
- ], CommonFindController);
- export { CommonFindController };
- let FindController = class FindController extends CommonFindController {
- constructor(editor, _contextViewService, _contextKeyService, _keybindingService, _themeService, _notificationService, _storageService, clipboardService) {
- super(editor, _contextKeyService, _storageService, clipboardService);
- this._contextViewService = _contextViewService;
- this._keybindingService = _keybindingService;
- this._themeService = _themeService;
- this._notificationService = _notificationService;
- this._widget = null;
- this._findOptionsWidget = null;
- }
- _start(opts, newState) {
- const _super = Object.create(null, {
- _start: { get: () => super._start }
- });
- return __awaiter(this, void 0, void 0, function* () {
- if (!this._widget) {
- this._createFindWidget();
- }
- const selection = this._editor.getSelection();
- let updateSearchScope = false;
- switch (this._editor.getOption(35 /* find */).autoFindInSelection) {
- case 'always':
- updateSearchScope = true;
- break;
- case 'never':
- updateSearchScope = false;
- break;
- case 'multiline':
- const isSelectionMultipleLine = !!selection && selection.startLineNumber !== selection.endLineNumber;
- updateSearchScope = isSelectionMultipleLine;
- break;
- default:
- break;
- }
- opts.updateSearchScope = opts.updateSearchScope || updateSearchScope;
- yield _super._start.call(this, opts, newState);
- if (this._widget) {
- if (opts.shouldFocus === 2 /* FocusReplaceInput */) {
- this._widget.focusReplaceInput();
- }
- else if (opts.shouldFocus === 1 /* FocusFindInput */) {
- this._widget.focusFindInput();
- }
- }
- });
- }
- highlightFindOptions(ignoreWhenVisible = false) {
- if (!this._widget) {
- this._createFindWidget();
- }
- if (this._state.isRevealed && !ignoreWhenVisible) {
- this._widget.highlightFindOptions();
- }
- else {
- this._findOptionsWidget.highlightFindOptions();
- }
- }
- _createFindWidget() {
- this._widget = this._register(new FindWidget(this._editor, this, this._state, this._contextViewService, this._keybindingService, this._contextKeyService, this._themeService, this._storageService, this._notificationService));
- this._findOptionsWidget = this._register(new FindOptionsWidget(this._editor, this._state, this._keybindingService, this._themeService));
- }
- };
- FindController = __decorate([
- __param(1, IContextViewService),
- __param(2, IContextKeyService),
- __param(3, IKeybindingService),
- __param(4, IThemeService),
- __param(5, INotificationService),
- __param(6, IStorageService),
- __param(7, IClipboardService)
- ], FindController);
- export { FindController };
- export const StartFindAction = registerMultiEditorAction(new MultiEditorAction({
- id: FIND_IDS.StartFindAction,
- label: nls.localize('startFindAction', "Find"),
- alias: 'Find',
- precondition: ContextKeyExpr.or(EditorContextKeys.focus, ContextKeyExpr.has('editorIsOpen')),
- kbOpts: {
- kbExpr: null,
- primary: 2048 /* CtrlCmd */ | 36 /* KeyF */,
- weight: 100 /* EditorContrib */
- },
- menuOpts: {
- menuId: MenuId.MenubarEditMenu,
- group: '3_find',
- title: nls.localize({ key: 'miFind', comment: ['&& denotes a mnemonic'] }, "&&Find"),
- order: 1
- }
- }));
- StartFindAction.addImplementation(0, (accessor, editor, args) => {
- const controller = CommonFindController.get(editor);
- if (!controller) {
- return false;
- }
- return controller.start({
- forceRevealReplace: false,
- seedSearchStringFromSelection: editor.getOption(35 /* find */).seedSearchStringFromSelection !== 'never' ? 'single' : 'none',
- seedSearchStringFromNonEmptySelection: editor.getOption(35 /* find */).seedSearchStringFromSelection === 'selection',
- seedSearchStringFromGlobalClipboard: editor.getOption(35 /* find */).globalFindClipboard,
- shouldFocus: 1 /* FocusFindInput */,
- shouldAnimate: true,
- updateSearchScope: false,
- loop: editor.getOption(35 /* find */).loop
- });
- });
- const findArgDescription = {
- description: 'Open a new In-Editor Find Widget.',
- args: [{
- name: 'Open a new In-Editor Find Widget args',
- schema: {
- properties: {
- searchString: { type: 'string' },
- replaceString: { type: 'string' },
- regex: { type: 'boolean' },
- regexOverride: {
- type: 'number',
- description: nls.localize('actions.find.isRegexOverride', 'Overrides "Use Regular Expression" flag.\nThe flag will not be saved for the future.\n0: Do Nothing\n1: True\n2: False')
- },
- wholeWord: { type: 'boolean' },
- wholeWordOverride: {
- type: 'number',
- description: nls.localize('actions.find.wholeWordOverride', 'Overrides "Match Whole Word" flag.\nThe flag will not be saved for the future.\n0: Do Nothing\n1: True\n2: False')
- },
- matchCase: { type: 'boolean' },
- matchCaseOverride: {
- type: 'number',
- description: nls.localize('actions.find.matchCaseOverride', 'Overrides "Math Case" flag.\nThe flag will not be saved for the future.\n0: Do Nothing\n1: True\n2: False')
- },
- preserveCase: { type: 'boolean' },
- preserveCaseOverride: {
- type: 'number',
- description: nls.localize('actions.find.preserveCaseOverride', 'Overrides "Preserve Case" flag.\nThe flag will not be saved for the future.\n0: Do Nothing\n1: True\n2: False')
- },
- findInSelection: { type: 'boolean' },
- }
- }
- }]
- };
- export class StartFindWithArgsAction extends EditorAction {
- constructor() {
- super({
- id: FIND_IDS.StartFindWithArgs,
- label: nls.localize('startFindWithArgsAction', "Find With Arguments"),
- alias: 'Find With Arguments',
- precondition: undefined,
- kbOpts: {
- kbExpr: null,
- primary: 0,
- weight: 100 /* EditorContrib */
- },
- description: findArgDescription
- });
- }
- run(accessor, editor, args) {
- return __awaiter(this, void 0, void 0, function* () {
- let controller = CommonFindController.get(editor);
- if (controller) {
- const newState = args ? {
- searchString: args.searchString,
- replaceString: args.replaceString,
- isReplaceRevealed: args.replaceString !== undefined,
- isRegex: args.isRegex,
- // isRegexOverride: args.regexOverride,
- wholeWord: args.matchWholeWord,
- // wholeWordOverride: args.wholeWordOverride,
- matchCase: args.isCaseSensitive,
- // matchCaseOverride: args.matchCaseOverride,
- preserveCase: args.preserveCase,
- // preserveCaseOverride: args.preserveCaseOverride,
- } : {};
- yield controller.start({
- forceRevealReplace: false,
- seedSearchStringFromSelection: (controller.getState().searchString.length === 0) && editor.getOption(35 /* find */).seedSearchStringFromSelection !== 'never' ? 'single' : 'none',
- seedSearchStringFromNonEmptySelection: editor.getOption(35 /* find */).seedSearchStringFromSelection === 'selection',
- seedSearchStringFromGlobalClipboard: true,
- shouldFocus: 1 /* FocusFindInput */,
- shouldAnimate: true,
- updateSearchScope: (args === null || args === void 0 ? void 0 : args.findInSelection) || false,
- loop: editor.getOption(35 /* find */).loop
- }, newState);
- controller.setGlobalBufferTerm(controller.getState().searchString);
- }
- });
- }
- }
- export class StartFindWithSelectionAction extends EditorAction {
- constructor() {
- super({
- id: FIND_IDS.StartFindWithSelection,
- label: nls.localize('startFindWithSelectionAction', "Find With Selection"),
- alias: 'Find With Selection',
- precondition: undefined,
- kbOpts: {
- kbExpr: null,
- primary: 0,
- mac: {
- primary: 2048 /* CtrlCmd */ | 35 /* KeyE */,
- },
- weight: 100 /* EditorContrib */
- }
- });
- }
- run(accessor, editor) {
- return __awaiter(this, void 0, void 0, function* () {
- let controller = CommonFindController.get(editor);
- if (controller) {
- yield controller.start({
- forceRevealReplace: false,
- seedSearchStringFromSelection: 'multiple',
- seedSearchStringFromNonEmptySelection: false,
- seedSearchStringFromGlobalClipboard: false,
- shouldFocus: 0 /* NoFocusChange */,
- shouldAnimate: true,
- updateSearchScope: false,
- loop: editor.getOption(35 /* find */).loop
- });
- controller.setGlobalBufferTerm(controller.getState().searchString);
- }
- });
- }
- }
- export class MatchFindAction extends EditorAction {
- run(accessor, editor) {
- return __awaiter(this, void 0, void 0, function* () {
- let controller = CommonFindController.get(editor);
- if (controller && !this._run(controller)) {
- yield controller.start({
- forceRevealReplace: false,
- seedSearchStringFromSelection: (controller.getState().searchString.length === 0) && editor.getOption(35 /* find */).seedSearchStringFromSelection !== 'never' ? 'single' : 'none',
- seedSearchStringFromNonEmptySelection: editor.getOption(35 /* find */).seedSearchStringFromSelection === 'selection',
- seedSearchStringFromGlobalClipboard: true,
- shouldFocus: 0 /* NoFocusChange */,
- shouldAnimate: true,
- updateSearchScope: false,
- loop: editor.getOption(35 /* find */).loop
- });
- this._run(controller);
- }
- });
- }
- }
- export class NextMatchFindAction extends MatchFindAction {
- constructor() {
- super({
- id: FIND_IDS.NextMatchFindAction,
- label: nls.localize('findNextMatchAction', "Find Next"),
- alias: 'Find Next',
- precondition: undefined,
- kbOpts: [{
- kbExpr: EditorContextKeys.focus,
- primary: 61 /* F3 */,
- mac: { primary: 2048 /* CtrlCmd */ | 37 /* KeyG */, secondary: [61 /* F3 */] },
- weight: 100 /* EditorContrib */
- }, {
- kbExpr: ContextKeyExpr.and(EditorContextKeys.focus, CONTEXT_FIND_INPUT_FOCUSED),
- primary: 3 /* Enter */,
- weight: 100 /* EditorContrib */
- }]
- });
- }
- _run(controller) {
- const result = controller.moveToNextMatch();
- if (result) {
- controller.editor.pushUndoStop();
- return true;
- }
- return false;
- }
- }
- export class PreviousMatchFindAction extends MatchFindAction {
- constructor() {
- super({
- id: FIND_IDS.PreviousMatchFindAction,
- label: nls.localize('findPreviousMatchAction', "Find Previous"),
- alias: 'Find Previous',
- precondition: undefined,
- kbOpts: [{
- kbExpr: EditorContextKeys.focus,
- primary: 1024 /* Shift */ | 61 /* F3 */,
- mac: { primary: 2048 /* CtrlCmd */ | 1024 /* Shift */ | 37 /* KeyG */, secondary: [1024 /* Shift */ | 61 /* F3 */] },
- weight: 100 /* EditorContrib */
- }, {
- kbExpr: ContextKeyExpr.and(EditorContextKeys.focus, CONTEXT_FIND_INPUT_FOCUSED),
- primary: 1024 /* Shift */ | 3 /* Enter */,
- weight: 100 /* EditorContrib */
- }
- ]
- });
- }
- _run(controller) {
- return controller.moveToPrevMatch();
- }
- }
- export class SelectionMatchFindAction extends EditorAction {
- run(accessor, editor) {
- return __awaiter(this, void 0, void 0, function* () {
- let controller = CommonFindController.get(editor);
- if (!controller) {
- return;
- }
- const seedSearchStringFromNonEmptySelection = editor.getOption(35 /* find */).seedSearchStringFromSelection === 'selection';
- let selectionSearchString = null;
- if (editor.getOption(35 /* find */).seedSearchStringFromSelection !== 'never') {
- selectionSearchString = getSelectionSearchString(editor, 'single', seedSearchStringFromNonEmptySelection);
- }
- if (selectionSearchString) {
- controller.setSearchString(selectionSearchString);
- }
- if (!this._run(controller)) {
- yield controller.start({
- forceRevealReplace: false,
- seedSearchStringFromSelection: editor.getOption(35 /* find */).seedSearchStringFromSelection !== 'never' ? 'single' : 'none',
- seedSearchStringFromNonEmptySelection: seedSearchStringFromNonEmptySelection,
- seedSearchStringFromGlobalClipboard: false,
- shouldFocus: 0 /* NoFocusChange */,
- shouldAnimate: true,
- updateSearchScope: false,
- loop: editor.getOption(35 /* find */).loop
- });
- this._run(controller);
- }
- });
- }
- }
- export class NextSelectionMatchFindAction extends SelectionMatchFindAction {
- constructor() {
- super({
- id: FIND_IDS.NextSelectionMatchFindAction,
- label: nls.localize('nextSelectionMatchFindAction', "Find Next Selection"),
- alias: 'Find Next Selection',
- precondition: undefined,
- kbOpts: {
- kbExpr: EditorContextKeys.focus,
- primary: 2048 /* CtrlCmd */ | 61 /* F3 */,
- weight: 100 /* EditorContrib */
- }
- });
- }
- _run(controller) {
- return controller.moveToNextMatch();
- }
- }
- export class PreviousSelectionMatchFindAction extends SelectionMatchFindAction {
- constructor() {
- super({
- id: FIND_IDS.PreviousSelectionMatchFindAction,
- label: nls.localize('previousSelectionMatchFindAction', "Find Previous Selection"),
- alias: 'Find Previous Selection',
- precondition: undefined,
- kbOpts: {
- kbExpr: EditorContextKeys.focus,
- primary: 2048 /* CtrlCmd */ | 1024 /* Shift */ | 61 /* F3 */,
- weight: 100 /* EditorContrib */
- }
- });
- }
- _run(controller) {
- return controller.moveToPrevMatch();
- }
- }
- export const StartFindReplaceAction = registerMultiEditorAction(new MultiEditorAction({
- id: FIND_IDS.StartFindReplaceAction,
- label: nls.localize('startReplace', "Replace"),
- alias: 'Replace',
- precondition: ContextKeyExpr.or(EditorContextKeys.focus, ContextKeyExpr.has('editorIsOpen')),
- kbOpts: {
- kbExpr: null,
- primary: 2048 /* CtrlCmd */ | 38 /* KeyH */,
- mac: { primary: 2048 /* CtrlCmd */ | 512 /* Alt */ | 36 /* KeyF */ },
- weight: 100 /* EditorContrib */
- },
- menuOpts: {
- menuId: MenuId.MenubarEditMenu,
- group: '3_find',
- title: nls.localize({ key: 'miReplace', comment: ['&& denotes a mnemonic'] }, "&&Replace"),
- order: 2
- }
- }));
- StartFindReplaceAction.addImplementation(0, (accessor, editor, args) => {
- if (!editor.hasModel() || editor.getOption(80 /* readOnly */)) {
- return false;
- }
- const controller = CommonFindController.get(editor);
- if (!controller) {
- return false;
- }
- const currentSelection = editor.getSelection();
- const findInputFocused = controller.isFindInputFocused();
- // we only seed search string from selection when the current selection is single line and not empty,
- // + the find input is not focused
- const seedSearchStringFromSelection = !currentSelection.isEmpty()
- && currentSelection.startLineNumber === currentSelection.endLineNumber
- && (editor.getOption(35 /* find */).seedSearchStringFromSelection !== 'never')
- && !findInputFocused;
- /*
- * if the existing search string in find widget is empty and we don't seed search string from selection, it means the Find Input is still empty, so we should focus the Find Input instead of Replace Input.
- * findInputFocused true -> seedSearchStringFromSelection false, FocusReplaceInput
- * findInputFocused false, seedSearchStringFromSelection true FocusReplaceInput
- * findInputFocused false seedSearchStringFromSelection false FocusFindInput
- */
- const shouldFocus = (findInputFocused || seedSearchStringFromSelection) ?
- 2 /* FocusReplaceInput */ : 1 /* FocusFindInput */;
- return controller.start({
- forceRevealReplace: true,
- seedSearchStringFromSelection: seedSearchStringFromSelection ? 'single' : 'none',
- seedSearchStringFromNonEmptySelection: editor.getOption(35 /* find */).seedSearchStringFromSelection === 'selection',
- seedSearchStringFromGlobalClipboard: editor.getOption(35 /* find */).seedSearchStringFromSelection !== 'never',
- shouldFocus: shouldFocus,
- shouldAnimate: true,
- updateSearchScope: false,
- loop: editor.getOption(35 /* find */).loop
- });
- });
- registerEditorContribution(CommonFindController.ID, FindController);
- registerEditorAction(StartFindWithArgsAction);
- registerEditorAction(StartFindWithSelectionAction);
- registerEditorAction(NextMatchFindAction);
- registerEditorAction(PreviousMatchFindAction);
- registerEditorAction(NextSelectionMatchFindAction);
- registerEditorAction(PreviousSelectionMatchFindAction);
- const FindCommand = EditorCommand.bindToContribution(CommonFindController.get);
- registerEditorCommand(new FindCommand({
- id: FIND_IDS.CloseFindWidgetCommand,
- precondition: CONTEXT_FIND_WIDGET_VISIBLE,
- handler: x => x.closeFindWidget(),
- kbOpts: {
- weight: 100 /* EditorContrib */ + 5,
- kbExpr: ContextKeyExpr.and(EditorContextKeys.focus, ContextKeyExpr.not('isComposing')),
- primary: 9 /* Escape */,
- secondary: [1024 /* Shift */ | 9 /* Escape */]
- }
- }));
- registerEditorCommand(new FindCommand({
- id: FIND_IDS.ToggleCaseSensitiveCommand,
- precondition: undefined,
- handler: x => x.toggleCaseSensitive(),
- kbOpts: {
- weight: 100 /* EditorContrib */ + 5,
- kbExpr: EditorContextKeys.focus,
- primary: ToggleCaseSensitiveKeybinding.primary,
- mac: ToggleCaseSensitiveKeybinding.mac,
- win: ToggleCaseSensitiveKeybinding.win,
- linux: ToggleCaseSensitiveKeybinding.linux
- }
- }));
- registerEditorCommand(new FindCommand({
- id: FIND_IDS.ToggleWholeWordCommand,
- precondition: undefined,
- handler: x => x.toggleWholeWords(),
- kbOpts: {
- weight: 100 /* EditorContrib */ + 5,
- kbExpr: EditorContextKeys.focus,
- primary: ToggleWholeWordKeybinding.primary,
- mac: ToggleWholeWordKeybinding.mac,
- win: ToggleWholeWordKeybinding.win,
- linux: ToggleWholeWordKeybinding.linux
- }
- }));
- registerEditorCommand(new FindCommand({
- id: FIND_IDS.ToggleRegexCommand,
- precondition: undefined,
- handler: x => x.toggleRegex(),
- kbOpts: {
- weight: 100 /* EditorContrib */ + 5,
- kbExpr: EditorContextKeys.focus,
- primary: ToggleRegexKeybinding.primary,
- mac: ToggleRegexKeybinding.mac,
- win: ToggleRegexKeybinding.win,
- linux: ToggleRegexKeybinding.linux
- }
- }));
- registerEditorCommand(new FindCommand({
- id: FIND_IDS.ToggleSearchScopeCommand,
- precondition: undefined,
- handler: x => x.toggleSearchScope(),
- kbOpts: {
- weight: 100 /* EditorContrib */ + 5,
- kbExpr: EditorContextKeys.focus,
- primary: ToggleSearchScopeKeybinding.primary,
- mac: ToggleSearchScopeKeybinding.mac,
- win: ToggleSearchScopeKeybinding.win,
- linux: ToggleSearchScopeKeybinding.linux
- }
- }));
- registerEditorCommand(new FindCommand({
- id: FIND_IDS.TogglePreserveCaseCommand,
- precondition: undefined,
- handler: x => x.togglePreserveCase(),
- kbOpts: {
- weight: 100 /* EditorContrib */ + 5,
- kbExpr: EditorContextKeys.focus,
- primary: TogglePreserveCaseKeybinding.primary,
- mac: TogglePreserveCaseKeybinding.mac,
- win: TogglePreserveCaseKeybinding.win,
- linux: TogglePreserveCaseKeybinding.linux
- }
- }));
- registerEditorCommand(new FindCommand({
- id: FIND_IDS.ReplaceOneAction,
- precondition: CONTEXT_FIND_WIDGET_VISIBLE,
- handler: x => x.replace(),
- kbOpts: {
- weight: 100 /* EditorContrib */ + 5,
- kbExpr: EditorContextKeys.focus,
- primary: 2048 /* CtrlCmd */ | 1024 /* Shift */ | 22 /* Digit1 */
- }
- }));
- registerEditorCommand(new FindCommand({
- id: FIND_IDS.ReplaceOneAction,
- precondition: CONTEXT_FIND_WIDGET_VISIBLE,
- handler: x => x.replace(),
- kbOpts: {
- weight: 100 /* EditorContrib */ + 5,
- kbExpr: ContextKeyExpr.and(EditorContextKeys.focus, CONTEXT_REPLACE_INPUT_FOCUSED),
- primary: 3 /* Enter */
- }
- }));
- registerEditorCommand(new FindCommand({
- id: FIND_IDS.ReplaceAllAction,
- precondition: CONTEXT_FIND_WIDGET_VISIBLE,
- handler: x => x.replaceAll(),
- kbOpts: {
- weight: 100 /* EditorContrib */ + 5,
- kbExpr: EditorContextKeys.focus,
- primary: 2048 /* CtrlCmd */ | 512 /* Alt */ | 3 /* Enter */
- }
- }));
- registerEditorCommand(new FindCommand({
- id: FIND_IDS.ReplaceAllAction,
- precondition: CONTEXT_FIND_WIDGET_VISIBLE,
- handler: x => x.replaceAll(),
- kbOpts: {
- weight: 100 /* EditorContrib */ + 5,
- kbExpr: ContextKeyExpr.and(EditorContextKeys.focus, CONTEXT_REPLACE_INPUT_FOCUSED),
- primary: undefined,
- mac: {
- primary: 2048 /* CtrlCmd */ | 3 /* Enter */,
- }
- }
- }));
- registerEditorCommand(new FindCommand({
- id: FIND_IDS.SelectAllMatchesAction,
- precondition: CONTEXT_FIND_WIDGET_VISIBLE,
- handler: x => x.selectAllMatches(),
- kbOpts: {
- weight: 100 /* EditorContrib */ + 5,
- kbExpr: EditorContextKeys.focus,
- primary: 512 /* Alt */ | 3 /* Enter */
- }
- }));
|