Skip to content

Commit

Permalink
Merge pull request #62 from aydk-xcc/develop
Browse files Browse the repository at this point in the history
更正链接引用
  • Loading branch information
aydk-xcc authored Dec 15, 2023
2 parents 1b90acc + 3f7466e commit 23b7a9e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 27 deletions.
18 changes: 9 additions & 9 deletions docs/editor/interfaces/IStandaloneCodeEditor.md
Original file line number Diff line number Diff line change
Expand Up @@ -754,9 +754,9 @@ console.log(myContextKey.get()); // 输出 'default'
在这个示例中,我们创建了一个编辑器,并使用 createContextKey 方法创建了一个名为 myContextKey 的上下文键,它的默认值为 'default'。我们通过调用 get 方法来获取当前上下文键的值,输出结果为 'default'。

## createDecorationsCollection
+ 语法: `createDecorationsCollection(ownerId: number): IDecorationsController`
+ 参数: `ownerId`
+ 返回值: `IDecorationsController`
+ 语法: `createDecorationsCollection(decorations?: ` [IModelDeltaDecoration](./IModelDeltaDecoration.md) `[]): `[IEditorDecorationsCollection](./IEditorDecorationsCollection.md)
+ 参数: decorations?: [IModelDeltaDecoration[]](./IModelDeltaDecoration.md) `可选`
+ 返回值: [IEditorDecorationsCollection](./IEditorDecorationsCollection.md)
+ 描述: `创建一个装饰器集合,用于管理编辑器的装饰器信息`

其中,ownerId 参数是一个数字,用来标识装饰器集合的所有者。
Expand Down Expand Up @@ -1030,9 +1030,9 @@ console.log(contribution);

```
## getDecorationsInRange
- 语法: `getDecorationsInRange(range: IRange): IModelDecoration[]`
- 语法: `getDecorationsInRange(range: IRange): ` [IModelDecoration[]](./IModelDecoration.md)
- 参数: `range`
- 返回值: `IModelDecoration[]`
- 返回值: [IModelDecoration[]](./IModelDecoration.md)
- 描述: `获取指定范围内的装饰器`
其中,range 参数是一个 IRange 对象,用来表示要获取装饰器的范围。返回值是一个 IModelDecoration 数组,表示指定范围内的装饰器。

Expand Down Expand Up @@ -1115,9 +1115,9 @@ console.log(id);

```
## getLayoutInfo
- 语法: `getLayoutInfo(): IEditorLayoutInfo`
- 语法: `getLayoutInfo(): ` [EditorLayoutInfo](./EditorLayoutInfo.md)
- 参数: `-`
- 返回值: `IEditorLayoutInfo`
- 返回值: [EditorLayoutInfo](./EditorLayoutInfo.md)
- 描述: `获取编辑器的布局信息`
返回值是一个 IEditorLayoutInfo 对象,表示编辑器的布局信息。

Expand Down Expand Up @@ -1161,9 +1161,9 @@ console.log(decorations);

```
## getModel
- 语法: `getModel(): ITextModel`
- 语法: `getModel():` [ITextModel](./ITextModel.md)
- 参数: `-`
- 返回值: `ITextModel`
- 返回值: [ITextModel](./ITextModel.md)
- 描述: `获取编辑器的文本模型`
返回值是一个 ITextModel 对象,表示编辑器的文本模型。

Expand Down
18 changes: 0 additions & 18 deletions docs/editor/interfaces/ITextModel.md
Original file line number Diff line number Diff line change
Expand Up @@ -427,24 +427,6 @@ console.log(decorations);
+ 参数: startLineNumber , endLineNumber
+ 返回值: IModelDecoration[]
+ 描述: 获取指定行范围内的装饰。 startLineNumber 和 endLineNumber 参数分别表示要获取装饰的起始行号和结束行号。

## getOffsetAt
+ 语法: getOffsetAt(position: IPosition): number
+ 参数: position
+ 返回值: number
+ 描述: 获取指定位置的偏移量。 position 参数是一个 IPosition 类型,表示要获取偏移量的位置。

## getOptions
+ 语法: getOptions(): TextModelResolvedOptions
+ 参数: 无
+ 返回值: TextModelResolvedOptions
+ 描述: 获取模型的选项。

## getOverviewRulerDecorations
+ 语法: getOverviewRulerDecorations(ownerId: number): IModelDecoration[]
+ 参数: ownerId
+ 返回值: IModelDecoration[]
+ 描述: 获取属于指定所有者的概览标尺装饰。 ownerId 参数是一个数字,表示装饰的所有者ID。

## getOffsetAt
+ 语法: getOffsetAt(position: IPosition): number
Expand Down

0 comments on commit 23b7a9e

Please sign in to comment.