Skip to content

correctly refer to "using directives" #4185

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 18, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ Prior to Visual Studio 2017 version 15.6 the only way to handle commands in an e

1. Add a class file and name it `KeyBindingCommandFilter`.

2. Add the following using statements.
2. Add the following using directives.

```csharp
using System;
Expand Down Expand Up @@ -129,7 +129,7 @@ Prior to Visual Studio 2017 version 15.6 the only way to handle commands in an e
## Add the command filter (prior to Visual Studio 2017 version 15.6)
The adornment provider must add a command filter to the text view. In this example, the provider implements <xref:Microsoft.VisualStudio.Editor.IVsTextViewCreationListener> to listen to text view creation events. This adornment provider also exports the adornment layer, which defines the Z-order of the adornment.

1. In the KeyBindingTestTextViewCreationListener file, add the following using statements:
1. In the KeyBindingTestTextViewCreationListener file, add the following using directives:

```csharp
using System;
Expand Down Expand Up @@ -197,7 +197,7 @@ The command handler is an implementation of <xref:Microsoft.VisualStudio.Command

1. Add a class file and name it `KeyBindingCommandHandler`.

2. Add the following using statements.
2. Add the following using directives.

```csharp
using Microsoft.VisualStudio.Commanding;
Expand Down