本文整理汇总了TypeScript中vs/editor/common/editorCommon.ICommonCodeEditor.setSelections方法的典型用法代码示例。如果您正苦于以下问题:TypeScript ICommonCodeEditor.setSelections方法的具体用法?TypeScript ICommonCodeEditor.setSelections怎么用?TypeScript ICommonCodeEditor.setSelections使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类vs/editor/common/editorCommon.ICommonCodeEditor
的用法示例。
在下文中一共展示了ICommonCodeEditor.setSelections方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: test
test('snippets, selections and snippet ranges', function () {
const session = new SnippetSession(editor, '${1:foo}farboo${2:bar}$0');
session.insert();
assert.equal(model.getValue(), 'foofarboobarfunction foo() {\n foofarboobarconsole.log(a);\n}');
assertSelections(editor, new Selection(1, 1, 1, 4), new Selection(2, 5, 2, 8));
assert.equal(session.isSelectionWithinPlaceholders(), true);
editor.setSelections([new Selection(1, 1, 1, 1)]);
assert.equal(session.isSelectionWithinPlaceholders(), false);
editor.setSelections([new Selection(1, 6, 1, 6), new Selection(2, 10, 2, 10)]);
assert.equal(session.isSelectionWithinPlaceholders(), false); // in snippet, outside placeholder
editor.setSelections([new Selection(1, 6, 1, 6), new Selection(2, 10, 2, 10), new Selection(1, 1, 1, 1)]);
assert.equal(session.isSelectionWithinPlaceholders(), false); // in snippet, outside placeholder
editor.setSelections([new Selection(1, 6, 1, 6), new Selection(2, 10, 2, 10), new Selection(2, 20, 2, 21)]);
assert.equal(session.isSelectionWithinPlaceholders(), false);
// reset selection to placeholder
session.next();
assert.equal(session.isSelectionWithinPlaceholders(), true);
assertSelections(editor, new Selection(1, 10, 1, 13), new Selection(2, 14, 2, 17));
// reset selection to placeholder
session.next();
assert.equal(session.isSelectionWithinPlaceholders(), true);
assert.equal(session.isAtLastPlaceholder, true);
assertSelections(editor, new Selection(1, 13, 1, 13), new Selection(2, 17, 2, 17));
});
示例2: setup
setup(function () {
contextKeys = new MockContextKeyService();
model = Model.createFromString('if\n $state\nfi');
editor = mockCodeEditor([], { model });
editor.setSelections([new Selection(1, 1, 1, 1), new Selection(2, 5, 2, 5)]);
assert.equal(model.getEOL(), '\n');
});
示例3: run
public run(accessor: ServicesAccessor, editor: ICommonCodeEditor): void {
let selection = editor.getSelection();
if (selection.isEmpty()) {
return;
}
let model = editor.getModel();
let newSelections = new Array<ISelection>();
let selectionStart = selection.getStartPosition();
let selectionEnd = selection.getEndPosition();
for (var i = selectionStart.lineNumber; i <= selectionEnd.lineNumber; i++) {
if (i !== selectionEnd.lineNumber) {
let currentLineMaxColumn = model.getLineMaxColumn(i);
newSelections.push({
selectionStartLineNumber: i,
selectionStartColumn: currentLineMaxColumn,
positionLineNumber: i,
positionColumn: currentLineMaxColumn
});
} else if (selectionEnd.column > 0) {
newSelections.push({
selectionStartLineNumber: selectionEnd.lineNumber,
selectionStartColumn: selectionEnd.column,
positionLineNumber: selectionEnd.lineNumber,
positionColumn: selectionEnd.column
});
}
}
editor.setSelections(newSelections);
}
示例4: run
public run(accessor: ServicesAccessor, editor: ICommonCodeEditor): void {
let selections = editor.getSelections();
let newSelections = selections
.map((selection) => this.getCursorsForSelection(selection, editor))
.reduce((prev, curr) => { return prev.concat(curr); });
if (newSelections.length > 0) {
editor.setSelections(newSelections);
}
}
示例5: test
test('insert, insert -> cursor moves out (up/down)', function () {
const ctrl = new SnippetController2(editor, contextKeys);
ctrl.insert('foo${1:bar}foo$0');
assertContextKeys(contextKeys, true, false, true);
assertSelections(editor, new Selection(1, 4, 1, 7), new Selection(2, 8, 2, 11));
// bad selection change
editor.setSelections([new Selection(2, 4, 2, 7), new Selection(3, 8, 3, 11)]);
assertContextKeys(contextKeys, false, false, false);
});
示例6: test
test('Selecting text from left to right, and choosing item messes up code, #31199', function () {
const model = editor.getModel();
model.setValue('console.log');
let actual = SnippetSession.adjustSelection(model, new Selection(1, 12, 1, 9), 3, 0);
assert.ok(actual.equalsSelection(new Selection(1, 9, 1, 6)));
actual = SnippetSession.adjustSelection(model, new Selection(1, 9, 1, 12), 3, 0);
assert.ok(actual.equalsSelection(new Selection(1, 9, 1, 12)));
editor.setSelections([new Selection(1, 9, 1, 12)]);
new SnippetSession(editor, 'far', 3, 0).insert();
assert.equal(model.getValue(), 'console.far');
});