本文整理汇总了TypeScript中vs/editor/browser/editorBrowser.IActiveCodeEditor.setSelections方法的典型用法代码示例。如果您正苦于以下问题:TypeScript IActiveCodeEditor.setSelections方法的具体用法?TypeScript IActiveCodeEditor.setSelections怎么用?TypeScript IActiveCodeEditor.setSelections使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类vs/editor/browser/editorBrowser.IActiveCodeEditor
的用法示例。
在下文中一共展示了IActiveCodeEditor.setSelections方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的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(), false);
assert.equal(session.isAtLastPlaceholder, true);
assertSelections(editor, new Selection(1, 13, 1, 13), new Selection(2, 17, 2, 17));
});
示例2: setup
setup(function () {
model = TextModel.createFromString('function foo() {\n console.log(a);\n}');
editor = createTestCodeEditor({ model: model }) as IActiveCodeEditor;
editor.setSelections([new Selection(1, 1, 1, 1), new Selection(2, 5, 2, 5)]);
assert.equal(model.getEOL(), '\n');
});