editorCommands.ts 21.0 KB
Newer Older
S
Sandeep Somavarapu 已提交
1 2 3 4 5 6 7
/*---------------------------------------------------------------------------------------------
 *  Copyright (c) Microsoft Corporation. All rights reserved.
 *  Licensed under the MIT License. See License.txt in the project root for license information.
 *--------------------------------------------------------------------------------------------*/

import * as nls from 'vs/nls';
import * as types from 'vs/base/common/types';
J
Johannes Rieken 已提交
8 9 10
import { ServicesAccessor } from 'vs/platform/instantiation/common/instantiation';
import { KeybindingsRegistry } from 'vs/platform/keybinding/common/keybindingsRegistry';
import { IEditorGroupService } from 'vs/workbench/services/group/common/groupService';
B
Benjamin Pasero 已提交
11
import { ActiveEditorMoveArguments, ActiveEditorMovePositioning, ActiveEditorMovePositioningBy, EditorCommands, TextCompareEditorVisible, EditorInput, IEditorIdentifier, IEditorCommandsContext } from 'vs/workbench/common/editor';
J
Johannes Rieken 已提交
12
import { IWorkbenchEditorService } from 'vs/workbench/services/editor/common/editorService';
13
import { IEditor, Position, POSITIONS, Direction, IEditorInput } from 'vs/platform/editor/common/editor';
14
import { EditorContextKeys } from 'vs/editor/common/editorContextKeys';
15
import { TextDiffEditor } from 'vs/workbench/browser/parts/editor/textDiffEditor';
16
import { EditorStacksModel, EditorGroup } from 'vs/workbench/common/editor/editorStacksModel';
I
isidor 已提交
17
import { KeyMod, KeyCode, KeyChord } from 'vs/base/common/keyCodes';
18
import { TPromise } from 'vs/base/common/winjs.base';
19
import URI from 'vs/base/common/uri';
B
Benjamin Pasero 已提交
20
import { IQuickOpenService } from 'vs/platform/quickOpen/common/quickOpen';
21
import { IDiffEditorOptions } from 'vs/editor/common/config/editorOptions';
I
isidor 已提交
22 23
import { IListService } from 'vs/platform/list/browser/listService';
import { List } from 'vs/base/browser/ui/list/listWidget';
I
isidor 已提交
24
import { distinct } from 'vs/base/common/arrays';
25

I
isidor 已提交
26 27
export const CLOSE_UNMODIFIED_EDITORS_COMMAND_ID = 'workbench.action.closeUnmodifiedEditors';
export const CLOSE_EDITORS_IN_GROUP_COMMAND_ID = 'workbench.action.closeEditorsInGroup';
28
export const CLOSE_EDITORS_TO_THE_RIGHT_COMMAND_ID = 'workbench.action.closeEditorsToTheRight';
I
isidor 已提交
29 30
export const CLOSE_EDITOR_COMMAND_ID = 'workbench.action.closeActiveEditor';
export const CLOSE_OTHER_EDITORS_IN_GROUP_COMMAND_ID = 'workbench.action.closeOtherEditors';
31
export const KEEP_EDITOR_COMMAND_ID = 'workbench.action.keepEditor';
B
Benjamin Pasero 已提交
32
export const SHOW_EDITORS_IN_GROUP = 'workbench.action.showEditorsInGroup';
33
export const TOGGLE_DIFF_INLINE_MODE = 'toggle.diff.editorMode';
B
Benjamin Pasero 已提交
34 35 36 37 38

export const NAVIGATE_IN_GROUP_ONE_PREFIX = 'edt one ';
export const NAVIGATE_IN_GROUP_TWO_PREFIX = 'edt two ';
export const NAVIGATE_IN_GROUP_THREE_PREFIX = 'edt three ';
export const NAVIGATE_ALL_EDITORS_GROUP_PREFIX = 'edt ';
39

40
export function setup(): void {
41 42
	registerActiveEditorMoveCommand();
	registerDiffEditorCommands();
43
	registerOpenEditorAtIndexCommands();
44
	registerEditorCommands();
S
Sandeep Somavarapu 已提交
45 46
}

B
Benjamin Pasero 已提交
47
const isActiveEditorMoveArg = function (arg: ActiveEditorMoveArguments): boolean {
S
Sandeep Somavarapu 已提交
48 49 50 51
	if (!types.isObject(arg)) {
		return false;
	}

52
	const activeEditorMoveArg: ActiveEditorMoveArguments = arg;
S
Sandeep Somavarapu 已提交
53 54 55 56 57 58 59 60 61

	if (!types.isString(activeEditorMoveArg.to)) {
		return false;
	}

	if (!types.isUndefined(activeEditorMoveArg.by) && !types.isString(activeEditorMoveArg.by)) {
		return false;
	}

62
	if (!types.isUndefined(activeEditorMoveArg.value) && !types.isNumber(activeEditorMoveArg.value)) {
S
Sandeep Somavarapu 已提交
63 64 65 66 67 68
		return false;
	}

	return true;
};

69
function registerActiveEditorMoveCommand(): void {
A
Alex Dima 已提交
70
	KeybindingsRegistry.registerCommandAndKeybindingRule({
71
		id: EditorCommands.MoveActiveEditor,
S
Sandeep Somavarapu 已提交
72
		weight: KeybindingsRegistry.WEIGHT.workbenchContrib(),
73
		when: EditorContextKeys.textFocus,
S
Sandeep Somavarapu 已提交
74
		primary: null,
75
		handler: (accessor, args: any) => moveActiveEditor(args, accessor),
S
Sandeep Somavarapu 已提交
76
		description: {
77
			description: nls.localize('editorCommand.activeEditorMove.description', "Move the active editor by tabs or groups"),
S
Sandeep Somavarapu 已提交
78 79 80
			args: [
				{
					name: nls.localize('editorCommand.activeEditorMove.arg.name', "Active editor move argument"),
J
Joao Moreno 已提交
81
					description: nls.localize('editorCommand.activeEditorMove.arg.description', "Argument Properties:\n\t* 'to': String value providing where to move.\n\t* 'by': String value providing the unit for move. By tab or by group.\n\t* 'value': Number value providing how many positions or an absolute position to move."),
S
Sandeep Somavarapu 已提交
82 83 84 85 86 87 88
					constraint: isActiveEditorMoveArg
				}
			]
		}
	});
}

89
function moveActiveEditor(args: ActiveEditorMoveArguments = {}, accessor: ServicesAccessor): void {
S
Sandeep Somavarapu 已提交
90
	args.to = args.to || ActiveEditorMovePositioning.RIGHT;
91
	args.by = args.by || ActiveEditorMovePositioningBy.TAB;
92
	args.value = types.isUndefined(args.value) ? 1 : args.value;
S
Sandeep Somavarapu 已提交
93

94
	const activeEditor = accessor.get(IWorkbenchEditorService).getActiveEditor();
95 96 97 98 99 100 101
	if (activeEditor) {
		switch (args.by) {
			case ActiveEditorMovePositioningBy.TAB:
				return moveActiveTab(args, activeEditor, accessor);
			case ActiveEditorMovePositioningBy.GROUP:
				return moveActiveEditorToGroup(args, activeEditor, accessor);
		}
S
Sandeep Somavarapu 已提交
102 103 104
	}
}

105
function moveActiveTab(args: ActiveEditorMoveArguments, activeEditor: IEditor, accessor: ServicesAccessor): void {
106
	const editorGroupsService: IEditorGroupService = accessor.get(IEditorGroupService);
S
Sandeep Somavarapu 已提交
107
	const editorGroup = editorGroupsService.getStacksModel().groupAt(activeEditor.position);
108
	let index = editorGroup.indexOf(activeEditor.input);
S
Sandeep Somavarapu 已提交
109 110 111 112 113 114 115 116
	switch (args.to) {
		case ActiveEditorMovePositioning.FIRST:
			index = 0;
			break;
		case ActiveEditorMovePositioning.LAST:
			index = editorGroup.count - 1;
			break;
		case ActiveEditorMovePositioning.LEFT:
117
			index = index - args.value;
S
Sandeep Somavarapu 已提交
118 119
			break;
		case ActiveEditorMovePositioning.RIGHT:
120
			index = index + args.value;
S
Sandeep Somavarapu 已提交
121 122
			break;
		case ActiveEditorMovePositioning.CENTER:
123
			index = Math.round(editorGroup.count / 2) - 1;
S
Sandeep Somavarapu 已提交
124 125
			break;
		case ActiveEditorMovePositioning.POSITION:
126
			index = args.value - 1;
S
Sandeep Somavarapu 已提交
127 128
			break;
	}
129

S
Sandeep Somavarapu 已提交
130
	index = index < 0 ? 0 : index >= editorGroup.count ? editorGroup.count - 1 : index;
131
	editorGroupsService.moveEditor(activeEditor.input, editorGroup, editorGroup, { index });
S
Sandeep Somavarapu 已提交
132 133
}

134
function moveActiveEditorToGroup(args: ActiveEditorMoveArguments, activeEditor: IEditor, accessor: ServicesAccessor): void {
135
	let newPosition = activeEditor.position;
S
Sandeep Somavarapu 已提交
136 137
	switch (args.to) {
		case ActiveEditorMovePositioning.LEFT:
S
Sandeep Somavarapu 已提交
138 139 140 141 142 143
			newPosition = newPosition - 1;
			break;
		case ActiveEditorMovePositioning.RIGHT:
			newPosition = newPosition + 1;
			break;
		case ActiveEditorMovePositioning.FIRST:
144
			newPosition = Position.ONE;
S
Sandeep Somavarapu 已提交
145 146
			break;
		case ActiveEditorMovePositioning.LAST:
147
			newPosition = Position.THREE;
S
Sandeep Somavarapu 已提交
148 149
			break;
		case ActiveEditorMovePositioning.CENTER:
150
			newPosition = Position.TWO;
S
Sandeep Somavarapu 已提交
151 152
			break;
		case ActiveEditorMovePositioning.POSITION:
153
			newPosition = args.value - 1;
S
Sandeep Somavarapu 已提交
154 155
			break;
	}
156

S
Sandeep Somavarapu 已提交
157 158
	newPosition = POSITIONS.indexOf(newPosition) !== -1 ? newPosition : activeEditor.position;
	accessor.get(IEditorGroupService).moveEditor(activeEditor.input, activeEditor.position, newPosition);
159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187
}

function registerDiffEditorCommands(): void {
	KeybindingsRegistry.registerCommandAndKeybindingRule({
		id: 'workbench.action.compareEditor.nextChange',
		weight: KeybindingsRegistry.WEIGHT.workbenchContrib(),
		when: TextCompareEditorVisible,
		primary: null,
		handler: accessor => navigateInDiffEditor(accessor, true)
	});

	KeybindingsRegistry.registerCommandAndKeybindingRule({
		id: 'workbench.action.compareEditor.previousChange',
		weight: KeybindingsRegistry.WEIGHT.workbenchContrib(),
		when: TextCompareEditorVisible,
		primary: null,
		handler: accessor => navigateInDiffEditor(accessor, false)
	});

	function navigateInDiffEditor(accessor: ServicesAccessor, next: boolean): void {
		let editorService = accessor.get(IWorkbenchEditorService);
		const candidates = [editorService.getActiveEditor(), ...editorService.getVisibleEditors()].filter(e => e instanceof TextDiffEditor);

		if (candidates.length > 0) {
			next ? (<TextDiffEditor>candidates[0]).getDiffNavigator().next() : (<TextDiffEditor>candidates[0]).getDiffNavigator().previous();
		}
	}

	KeybindingsRegistry.registerCommandAndKeybindingRule({
188 189
		id: TOGGLE_DIFF_INLINE_MODE,
		weight: KeybindingsRegistry.WEIGHT.workbenchContrib(),
190
		when: void 0,
191
		primary: void 0,
B
Benjamin Pasero 已提交
192
		handler: (accessor, resource, context: IEditorCommandsContext) => {
193
			const editorService = accessor.get(IWorkbenchEditorService);
B
Benjamin Pasero 已提交
194 195 196 197 198 199 200 201 202
			const editorGroupService = accessor.get(IEditorGroupService);

			let editor: IEditor;
			if (context) {
				const position = positionAndInput(editorGroupService, editorService, context).position;
				editor = editorService.getVisibleEditors()[position];
			} else {
				editor = editorService.getActiveEditor();
			}
203

204 205 206 207 208 209 210 211
			if (editor instanceof TextDiffEditor) {
				const control = editor.getControl();
				const isInlineMode = !control.renderSideBySide;
				control.updateOptions(<IDiffEditorOptions>{
					renderSideBySide: isInlineMode
				});
			}
		}
212
	});
213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240
}

function registerOpenEditorAtIndexCommands(): void {

	// Keybindings to focus a specific index in the tab folder if tabs are enabled
	for (let i = 0; i < 9; i++) {
		const editorIndex = i;
		const visibleIndex = i + 1;

		KeybindingsRegistry.registerCommandAndKeybindingRule({
			id: 'workbench.action.openEditorAtIndex' + visibleIndex,
			weight: KeybindingsRegistry.WEIGHT.workbenchContrib(),
			when: void 0,
			primary: KeyMod.Alt | toKeyCode(visibleIndex),
			mac: { primary: KeyMod.WinCtrl | toKeyCode(visibleIndex) },
			handler: accessor => {
				const editorService = accessor.get(IWorkbenchEditorService);
				const editorGroupService = accessor.get(IEditorGroupService);

				const active = editorService.getActiveEditor();
				if (active) {
					const group = editorGroupService.getStacksModel().groupAt(active.position);
					const editor = group.getEditor(editorIndex);

					if (editor) {
						return editorService.openEditor(editor);
					}
				}
241 242

				return void 0;
243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259
			}
		});
	}

	function toKeyCode(index: number): KeyCode {
		switch (index) {
			case 0: return KeyCode.KEY_0;
			case 1: return KeyCode.KEY_1;
			case 2: return KeyCode.KEY_2;
			case 3: return KeyCode.KEY_3;
			case 4: return KeyCode.KEY_4;
			case 5: return KeyCode.KEY_5;
			case 6: return KeyCode.KEY_6;
			case 7: return KeyCode.KEY_7;
			case 8: return KeyCode.KEY_8;
			case 9: return KeyCode.KEY_9;
		}
260 261

		return void 0;
262
	}
263 264
}

265
function registerEditorCommands() {
266

I
isidor 已提交
267
	KeybindingsRegistry.registerCommandAndKeybindingRule({
268
		id: CLOSE_UNMODIFIED_EDITORS_COMMAND_ID,
I
isidor 已提交
269
		weight: KeybindingsRegistry.WEIGHT.workbenchContrib(),
270
		when: void 0,
I
isidor 已提交
271
		primary: KeyChord(KeyMod.CtrlCmd | KeyCode.KEY_K, KeyCode.KEY_U),
272
		handler: (accessor, resource: URI, context: IEditorCommandsContext) => {
273
			const editorGroupService = accessor.get(IEditorGroupService);
I
isidor 已提交
274
			const model = editorGroupService.getStacksModel();
275
			const editorService = accessor.get(IWorkbenchEditorService);
276
			const contexts = getMultiSelectedEditorContexts(context, accessor.get(IListService));
I
isidor 已提交
277 278 279 280
			if (contexts.length === 0 && model.activeGroup) {
				// If command is triggered from the command palette use the active group
				contexts.push({ groupId: model.activeGroup.id });
			}
281

B
Benjamin Pasero 已提交
282 283 284
			let positionOne: { unmodifiedOnly: boolean } = void 0;
			let positionTwo: { unmodifiedOnly: boolean } = void 0;
			let positionThree: { unmodifiedOnly: boolean } = void 0;
I
isidor 已提交
285
			contexts.forEach(c => {
286
				switch (model.positionOfGroup(model.getGroup(c.groupId))) {
I
isidor 已提交
287 288 289 290 291 292 293
					case Position.ONE: positionOne = { unmodifiedOnly: true }; break;
					case Position.TWO: positionTwo = { unmodifiedOnly: true }; break;
					case Position.THREE: positionThree = { unmodifiedOnly: true }; break;
				}
			});

			return editorService.closeEditors({ positionOne, positionTwo, positionThree });
294 295 296
		}
	});

I
isidor 已提交
297
	KeybindingsRegistry.registerCommandAndKeybindingRule({
298
		id: CLOSE_EDITORS_IN_GROUP_COMMAND_ID,
I
isidor 已提交
299
		weight: KeybindingsRegistry.WEIGHT.workbenchContrib(),
300
		when: void 0,
I
isidor 已提交
301
		primary: KeyChord(KeyMod.CtrlCmd | KeyCode.KEY_K, KeyCode.KEY_W),
302
		handler: (accessor, resource: URI, context: IEditorCommandsContext) => {
303 304
			const editorGroupService = accessor.get(IEditorGroupService);
			const editorService = accessor.get(IWorkbenchEditorService);
305 306 307
			const contexts = getMultiSelectedEditorContexts(context, accessor.get(IListService));
			const distinctGroupIds = distinct(contexts.map(c => c.groupId));
			const model = editorGroupService.getStacksModel();
308

309 310
			if (distinctGroupIds.length) {
				return editorService.closeEditors(distinctGroupIds.map(gid => model.positionOfGroup(model.getGroup(gid))));
311 312 313 314
			}
			const activeEditor = editorService.getActiveEditor();
			if (activeEditor) {
				return editorService.closeEditors(activeEditor.position);
315 316 317 318 319 320
			}

			return TPromise.as(false);
		}
	});

I
isidor 已提交
321
	KeybindingsRegistry.registerCommandAndKeybindingRule({
I
isidor 已提交
322
		id: CLOSE_EDITOR_COMMAND_ID,
I
isidor 已提交
323
		weight: KeybindingsRegistry.WEIGHT.workbenchContrib(),
324
		when: void 0,
I
isidor 已提交
325 326
		primary: KeyMod.CtrlCmd | KeyCode.KEY_W,
		win: { primary: KeyMod.CtrlCmd | KeyCode.F4, secondary: [KeyMod.CtrlCmd | KeyCode.KEY_W] },
327
		handler: (accessor, resource: URI, context: IEditorCommandsContext) => {
I
isidor 已提交
328
			const editorGroupService = accessor.get(IEditorGroupService);
329
			const editorService = accessor.get(IWorkbenchEditorService);
I
isidor 已提交
330

331 332 333
			const contexts = getMultiSelectedEditorContexts(context, accessor.get(IListService));
			const groupIds = distinct(contexts.map(context => context.groupId));
			const model = editorGroupService.getStacksModel();
334 335

			const editorsToClose = new Map<Position, IEditorInput[]>();
I
isidor 已提交
336

337 338 339
			groupIds.forEach(groupId => {
				const group = model.getGroup(groupId);
				const position = model.positionOfGroup(group);
340
				if (position >= 0) {
I
isidor 已提交
341 342 343
					const inputs = contexts.map(c => {
						if (c && groupId === c.groupId && types.isNumber(c.editorIndex)) {
							return group.getEditor(c.editorIndex);
344
						}
I
isidor 已提交
345

I
isidor 已提交
346
						return group.activeEditor;
I
isidor 已提交
347 348 349 350 351
					}).filter(input => !!input);

					if (inputs.length) {
						editorsToClose.set(position, inputs);
					}
352
				}
353
			});
I
isidor 已提交
354

355 356 357 358 359 360 361
			if (editorsToClose.size === 0) {
				const activeEditor = editorService.getActiveEditor();
				if (activeEditor) {
					return editorService.closeEditor(activeEditor.position, activeEditor.input);
				}
			}

362 363 364 365 366
			return editorService.closeEditors({
				positionOne: editorsToClose.get(Position.ONE),
				positionTwo: editorsToClose.get(Position.TWO),
				positionThree: editorsToClose.get(Position.THREE)
			});
367 368 369
		}
	});

I
isidor 已提交
370
	KeybindingsRegistry.registerCommandAndKeybindingRule({
I
isidor 已提交
371
		id: CLOSE_OTHER_EDITORS_IN_GROUP_COMMAND_ID,
I
isidor 已提交
372
		weight: KeybindingsRegistry.WEIGHT.workbenchContrib(),
373 374
		when: void 0,
		primary: void 0,
I
isidor 已提交
375
		mac: { primary: KeyMod.CtrlCmd | KeyMod.Alt | KeyCode.KEY_T },
376
		handler: (accessor, resource: URI, context: IEditorCommandsContext) => {
I
isidor 已提交
377
			const editorGroupService = accessor.get(IEditorGroupService);
378
			const editorService = accessor.get(IWorkbenchEditorService);
379 380
			const contexts = getMultiSelectedEditorContexts(context, accessor.get(IListService));
			const model = editorGroupService.getStacksModel();
381

382 383 384 385 386 387 388 389 390 391 392
			if (contexts.length === 0) {
				// Cover the case when run from command palette
				const activeGroup = model.activeGroup;
				const activeEditor = editorService.getActiveEditorInput();
				if (activeGroup && activeEditor) {
					contexts.push({ groupId: activeGroup.id, editorIndex: activeGroup.indexOf(activeEditor) });
				}
			}

			const groupIds = distinct(contexts.map(context => context.groupId));
			const editorsToClose = new Map<Position, IEditorInput[]>();
393 394
			groupIds.forEach(groupId => {
				const group = model.getGroup(groupId);
395
				const inputsToSkip = contexts.map(c => {
I
isidor 已提交
396
					if (c.groupId === groupId && types.isNumber(c.editorIndex)) {
397
						return group.getEditor(c.editorIndex);
398
					}
399

B
Benjamin Pasero 已提交
400
					return void 0;
401
				}).filter(input => !!input);
402

403
				const toClose = group.getEditors().filter(input => inputsToSkip.indexOf(input) === -1);
404
				editorsToClose.set(model.positionOfGroup(group), toClose);
405 406 407 408 409 410 411
			});

			return editorService.closeEditors({
				positionOne: editorsToClose.get(Position.ONE),
				positionTwo: editorsToClose.get(Position.TWO),
				positionThree: editorsToClose.get(Position.THREE)
			});
412 413 414 415 416 417 418 419
		}
	});

	KeybindingsRegistry.registerCommandAndKeybindingRule({
		id: CLOSE_EDITORS_TO_THE_RIGHT_COMMAND_ID,
		weight: KeybindingsRegistry.WEIGHT.workbenchContrib(),
		when: void 0,
		primary: void 0,
420
		handler: (accessor, resource: URI, context: IEditorCommandsContext) => {
421 422
			const editorGroupService = accessor.get(IEditorGroupService);
			const editorService = accessor.get(IWorkbenchEditorService);
I
isidor 已提交
423

B
Benjamin Pasero 已提交
424
			const { position, input } = positionAndInput(editorGroupService, editorService, context);
425 426 427

			if (typeof position === 'number' && input) {
				return editorService.closeEditors(position, { except: input, direction: Direction.RIGHT });
428 429
			}

430 431 432 433 434 435 436 437 438
			return TPromise.as(false);
		}
	});

	KeybindingsRegistry.registerCommandAndKeybindingRule({
		id: KEEP_EDITOR_COMMAND_ID,
		weight: KeybindingsRegistry.WEIGHT.workbenchContrib(),
		when: void 0,
		primary: KeyChord(KeyMod.CtrlCmd | KeyCode.KEY_K, KeyCode.Enter),
439
		handler: (accessor, resource: URI, context: IEditorCommandsContext) => {
440 441 442
			const editorGroupService = accessor.get(IEditorGroupService);
			const editorService = accessor.get(IWorkbenchEditorService);

B
Benjamin Pasero 已提交
443
			const { position, input } = positionAndInput(editorGroupService, editorService, context);
444

I
isidor 已提交
445
			if (typeof position === 'number' && input) {
446
				return editorGroupService.pinEditor(position, input);
447 448
			}

I
isidor 已提交
449
			return TPromise.as(false);
450 451
		}
	});
B
Benjamin Pasero 已提交
452 453 454 455 456 457

	KeybindingsRegistry.registerCommandAndKeybindingRule({
		id: SHOW_EDITORS_IN_GROUP,
		weight: KeybindingsRegistry.WEIGHT.workbenchContrib(),
		when: void 0,
		primary: void 0,
B
Benjamin Pasero 已提交
458
		handler: (accessor, resource: URI, context: IEditorCommandsContext) => {
B
Benjamin Pasero 已提交
459 460 461 462 463 464
			const editorGroupService = accessor.get(IEditorGroupService);
			const editorService = accessor.get(IWorkbenchEditorService);
			const quickOpenService = accessor.get(IQuickOpenService);

			const stacks = editorGroupService.getStacksModel();
			const groupCount = stacks.groups.length;
465
			if (groupCount <= 1) {
B
Benjamin Pasero 已提交
466 467 468
				return quickOpenService.show(NAVIGATE_ALL_EDITORS_GROUP_PREFIX);
			}

B
Benjamin Pasero 已提交
469
			const { position } = positionAndInput(editorGroupService, editorService, context);
B
Benjamin Pasero 已提交
470 471 472 473 474 475 476 477 478 479 480

			switch (position) {
				case Position.TWO:
					return quickOpenService.show(NAVIGATE_IN_GROUP_TWO_PREFIX);
				case Position.THREE:
					return quickOpenService.show(NAVIGATE_IN_GROUP_THREE_PREFIX);
			}

			return quickOpenService.show(NAVIGATE_IN_GROUP_ONE_PREFIX);
		}
	});
481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500

	KeybindingsRegistry.registerCommandAndKeybindingRule({
		id: '_workbench.printStacksModel',
		weight: KeybindingsRegistry.WEIGHT.workbenchContrib(0),
		handler(accessor: ServicesAccessor) {
			console.log(`${accessor.get(IEditorGroupService).getStacksModel().toString()}\n\n`);
		},
		when: void 0,
		primary: void 0
	});

	KeybindingsRegistry.registerCommandAndKeybindingRule({
		id: '_workbench.validateStacksModel',
		weight: KeybindingsRegistry.WEIGHT.workbenchContrib(0),
		handler(accessor: ServicesAccessor) {
			(<EditorStacksModel>accessor.get(IEditorGroupService).getStacksModel()).validate();
		},
		when: void 0,
		primary: void 0
	});
501
}
502

503
function positionAndInput(editorGroupService: IEditorGroupService, editorService: IWorkbenchEditorService, context?: IEditorCommandsContext): { position: Position, input: IEditorInput } {
B
Benjamin Pasero 已提交
504 505

	// Resolve from context
506 507 508
	const model = editorGroupService.getStacksModel();
	const group = context ? model.getGroup(context.groupId) : undefined;
	let position = group ? model.positionOfGroup(group) : undefined;
I
isidor 已提交
509
	let input = group && types.isNumber(context.editorIndex) ? group.getEditor(context.editorIndex) : undefined;
510 511 512 513 514 515 516 517 518 519

	// If position or input are not passed in take the position and input of the active editor.
	const active = editorService.getActiveEditor();
	if (active) {
		position = typeof position === 'number' ? position : active.position;
		input = input ? input : <EditorInput>active.input;
	}

	return { position, input };
}
I
isidor 已提交
520

521
export function getMultiSelectedEditorContexts(editorContext: IEditorCommandsContext, listService: IListService): IEditorCommandsContext[] {
B
Benjamin Pasero 已提交
522 523
	// First check for a focused list to return the selected items from
	const list = listService.lastFocusedList;
I
isidor 已提交
524
	if (list instanceof List && list.isDOMFocused()) {
I
isidor 已提交
525 526 527 528 529
		const elementToContext = (element: IEditorIdentifier | EditorGroup) =>
			element instanceof EditorGroup ? { groupId: element.id, editorIndex: undefined } : { groupId: element.group.id, editorIndex: element.group.indexOf(element.editor) };
		const onlyEditorGroupAndEditor = (e) => e instanceof EditorGroup || ('editor' in e && 'group' in e);

		const focusedElements: (IEditorIdentifier | EditorGroup)[] = list.getFocusedElements().filter(onlyEditorGroupAndEditor);
530 531 532 533
		// need to take into account when editor context is { group: group }
		const focus = editorContext ? editorContext : focusedElements.length ? focusedElements.map(elementToContext)[0] : undefined;

		if (focus) {
I
isidor 已提交
534
			const selection: (IEditorIdentifier | EditorGroup)[] = list.getSelectedElements().filter(onlyEditorGroupAndEditor);
535 536 537 538
			// Only respect selection if it contains focused element
			if (selection && selection.some(s => s instanceof EditorGroup ? s.id === focus.groupId : s.group.id === focus.groupId && s.group.indexOf(s.editor) === focus.editorIndex)) {
				return selection.map(elementToContext);
			}
I
isidor 已提交
539

540
			return [focus];
I
isidor 已提交
541 542 543
		}
	}

B
Benjamin Pasero 已提交
544
	// Otherwise go with passed in context
I
isidor 已提交
545 546
	return !!editorContext ? [editorContext] : [];
}