本文整理汇总了TypeScript中vs/editor/common/controller/cursorWordOperations.WordOperations类的典型用法代码示例。如果您正苦于以下问题:TypeScript WordOperations类的具体用法?TypeScript WordOperations怎么用?TypeScript WordOperations使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了WordOperations类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。
示例1: _delete
protected _delete(wordSeparators: WordCharacterClassifier, model: IModel, selection: Selection, whitespaceHeuristics: boolean, wordNavigationType: WordNavigationType): Range {
let r = WordOperations.deleteWordLeft(wordSeparators, model, selection, whitespaceHeuristics, wordNavigationType);
if (r) {
return r;
}
return new Range(1, 1, 1, 1);
}
开发者ID:Chan-PH,项目名称:vscode,代码行数:7,代码来源:wordOperations.ts
示例2: _move
protected _move(wordSeparators: WordCharacterClassifier, model: IModel, position: Position, wordNavigationType: WordNavigationType): Position {
return WordOperations.moveWordRight(wordSeparators, model, position, wordNavigationType);
}
开发者ID:Chan-PH,项目名称:vscode,代码行数:3,代码来源:wordOperations.ts
示例3: word
public static word(cursor: OneCursor, inSelectionMode: boolean, validatedPosition: Position, ctx: IOneCursorOperationContext): boolean {
return this._applyMoveOperationResult(
cursor, ctx,
this._fromModelCursorState(cursor, WordOperations.word(cursor.config, cursor.model, cursor.modelState, inSelectionMode, validatedPosition))
);
}
开发者ID:yuit,项目名称:vscode,代码行数:6,代码来源:oneCursor.ts
示例4: moveWordRight
public static moveWordRight(cursor: OneCursor, inSelectionMode: boolean, wordNavigationType: WordNavigationType, ctx: IOneCursorOperationContext): boolean {
return this._applyMoveOperationResult(
cursor, ctx,
this._fromModelCursorState(cursor, WordOperations.moveWordRight(cursor.config, cursor.model, cursor.modelState, inSelectionMode, wordNavigationType))
);
}
开发者ID:yuit,项目名称:vscode,代码行数:6,代码来源:oneCursor.ts
示例5: word
public static word(context: CursorContext, cursor: OneCursor, inSelectionMode: boolean, _position: editorCommon.IPosition): CursorState {
const position = context.validateModelPosition(_position);
return this._fromModelCursorState(context, cursor, WordOperations.word(context.config, context.model, cursor.modelState, inSelectionMode, position));
}
开发者ID:m-khosravi,项目名称:vscode,代码行数:4,代码来源:oneCursor.ts
注:本文中的vs/editor/common/controller/cursorWordOperations.WordOperations类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论