Skip to content

Commit c061247

Browse files
committed
edit pass: visual-studio-editor
1 parent 4732387 commit c061247

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/extensibility/visualstudio.extensibility/editor/editor.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ The following sections summarize the high-level editor extensibility scenarios t
2727

2828
The most fundamental extensibility point for the Visual Studio editor is to manipulate text, either by reading the text in the editor or editing the text. These scenarios are core to any editor-based extensions. For example, to provide diagnostics information, such as warnings or errors, the extension must read the code in the editor and then interpret it. An extension also needs a way to detect when the text in the editor changed, if a new file opened, or if an open file closed.
2929

30-
For a walkthrough of how to make read text and track text changes by using `VisualStudio.Extensibility`, see [Work with text in the editor](./walkthroughs/working-with-text.md).
30+
For a walkthrough of how to read text and track text changes by using `VisualStudio.Extensibility`, see [Work with text in the editor](./walkthroughs/working-with-text.md).
3131

3232
## Make edits to text in the editor
3333

docs/extensibility/visualstudio.extensibility/editor/walkthroughs/taggers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Extensions can contribute new taggers to Visual Studio. Taggers are used to asso
1616

1717
`VisualStudio.Extensibility` supports tag types that are only provided by the [Microsoft.VisualStudio.Extensibility](https://www.nuget.org/packages/Microsoft.VisualStudio.Extensibility) package and implement the [ITag](/dotnet/api/microsoft.visualstudio.extensibility.editor.itag) interface:
1818

19-
- `CodeLensTag` is used together with an [ICodeLensProvider](./codelens.md) to add CodeLens to documents. `TextMarkerTag` and `ClassificationTag` can also be linked to the API documents.
19+
- `CodeLensTag` is used together with an [ICodeLensProvider](./codelens.md) to add CodeLens to documents.
2020
- `TextMarkerTag` is used to highlight portions of documents. `VisualStudio.Extensibility` doesn't support defining new Text Marker styles yet. For now, you can use only styles that are built into Visual Studio or provided by a Visual Studio SDK extension. (A [VisualStudio.Extensibility in-proc extension](../../get-started/in-proc-extensions.md) can create Text Marker styles with `[Export(typeof(EditorFormatDefinition))]`.)
2121
- `ClassificationTag` is used to classify a document's syntax, which allows for the text to be colorized accordingly.
2222

0 commit comments

Comments
 (0)