当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript SelectHighlightsAction.run方法代码示例

本文整理汇总了TypeScript中vs/editor/contrib/multicursor/multicursor.SelectHighlightsAction.run方法的典型用法代码示例。如果您正苦于以下问题:TypeScript SelectHighlightsAction.run方法的具体用法?TypeScript SelectHighlightsAction.run怎么用?TypeScript SelectHighlightsAction.run使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在vs/editor/contrib/multicursor/multicursor.SelectHighlightsAction的用法示例。


在下文中一共展示了SelectHighlightsAction.run方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: testMulticursor

			testMulticursor(text, (editor, findController) => {
				let action = new SelectHighlightsAction();
				editor.setSelections([
					new Selection(1, 2, 1, 2),
				]);

				action.run(null, editor);
				assert.deepEqual(editor.getSelections(), [
					new Selection(1, 1, 1, 4),
					new Selection(4, 1, 4, 4),
					new Selection(6, 2, 6, 5),
				]);

				action.run(null, editor);
				assert.deepEqual(editor.getSelections(), [
					new Selection(1, 1, 1, 4),
					new Selection(4, 1, 4, 4),
					new Selection(6, 2, 6, 5),
				]);
			});
开发者ID:jumpinjackie,项目名称:sqlopsstudio,代码行数:20,代码来源:multicursor.test.ts

示例2: SelectHighlightsAction

		], { serviceCollection: serviceCollection }, (editor, cursor) => {

			let findController = editor.registerAndInstantiateContribution<CommonFindController>(CommonFindController);
			let multiCursorSelectController = editor.registerAndInstantiateContribution<MultiCursorSelectionController>(MultiCursorSelectionController);
			let selectHighlightsAction = new SelectHighlightsAction();

			editor.setSelection(new Selection(1, 1, 1, 1));
			findController.getState().change({ searchString: 'some+thing', isRegex: true, isRevealed: true }, false);

			selectHighlightsAction.run(null, editor);
			assert.deepEqual(editor.getSelections().map(fromRange), [
				[1, 1, 1, 10],
				[2, 1, 2, 11],
				[3, 1, 3, 12],
			]);

			assert.equal(findController.getState().searchString, 'some+thing');

			multiCursorSelectController.dispose();
			findController.dispose();
		});
开发者ID:KTXSoftware,项目名称:KodeStudio,代码行数:21,代码来源:multicursor.test.ts

示例3: SelectHighlightsAction

		], { serviceCollection: serviceCollection }, (editor, cursor) => {

			let findController = editor.registerAndInstantiateContribution<CommonFindController>(CommonFindController);
			let multiCursorSelectController = editor.registerAndInstantiateContribution<MultiCursorSelectionController>(MultiCursorSelectionController);
			let selectHighlightsAction = new SelectHighlightsAction();

			editor.setSelection(new Selection(2, 9, 2, 16));

			selectHighlightsAction.run(null, editor);
			assert.deepEqual(editor.getSelections().map(fromRange), [
				[2, 9, 2, 16],
				[1, 9, 1, 16],
				[3, 9, 3, 16],
			]);

			editor.trigger('test', 'removeSecondaryCursors', null);

			assert.deepEqual(fromRange(editor.getSelection()), [2, 9, 2, 16]);

			multiCursorSelectController.dispose();
			findController.dispose();
		});
开发者ID:jumpinjackie,项目名称:sqlopsstudio,代码行数:22,代码来源:multicursor.test.ts


注:本文中的vs/editor/contrib/multicursor/multicursor.SelectHighlightsAction.run方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。