Skip to content

Commit 24f4365

Browse files
committed
PR feedback
1 parent bec082f commit 24f4365

File tree

4 files changed

+3
-10
lines changed

4 files changed

+3
-10
lines changed

docs/extensibility/adding-a-menu-controller-to-a-toolbar.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ This walkthrough builds on the [Add a toolbar to a tool window](../extensibility
115115
public const int cmdidMCItem3 = 0x132;
116116
```
117117

118-
2. In *TWTestCommand.cs*, add the following code at the top of the **TWTestCommand** class.
118+
2. In *TWTestCommand.cs*, add the following code at the top of the `TWTestCommand` class.
119119

120120
```csharp
121121
private int currentMCCommand; // The currently selected menu controller command

docs/extensibility/adding-an-lsp-extension.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,6 @@ The Language Server Protocol (LSP) is a common protocol, in the form of JSON RPC
2020

2121
## Language Server Protocol
2222

23-
<<<<<<< HEAD
24-
For more information on the protocol itself, see the documentation [here](https://github.com/Microsoft/language-server-protocol). Visual Studio’s implementation of Language Server Protocol is in preview, and support should be considered experimental. The preview release is in the form of an extension ([Language Server Protocol client preview](https://marketplace.visualstudio.com/items?itemName=vsext.LanguageServerClientPreview)), **but this extension can only be installed on the preview channel of Visual Studio**. A later release of Visual Studio will include built-in support for Language Server Protocol, at which time the Preview flag will be dropped. **You should not use the preview for production purposes.**
25-
26-
For more information on how to create a sample language server or how to integrate an existing language server into Visual Studio Code, see the documentation [here](https://code.visualstudio.com/docs/extensions/example-language-server).
27-
28-
=======
29-
>>>>>>> 8847805d0ecc07cda826d6287870788c3f4abf8c
3023
![language server protocol implementation](media/lsp-implementation.png)
3124

3225
This article describes how to create a Visual Studio extension that uses an LSP-based language server. It assumes that you have already developed an LSP-based language server and just want to integrate it into Visual Studio.

docs/extensibility/how-to-use-rule-based-ui-context-for-visual-studio-extensions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Visual Studio allows loading of VSPackages when certain well-known <xref:Microso
3232

3333
1. Define a new UIContext GUID and add to the VSPackage class <xref:Microsoft.VisualStudio.Shell.ProvideAutoLoadAttribute> and <xref:Microsoft.VisualStudio.Shell.ProvideUIContextRuleAttribute>.
3434

35-
For example, let's assume a new UIContext "UIContextGuid" is to be added. The GUID created (you can create a GUID by clicking on **Tools** > **Create guid**) is "8B40D5E2-5626-42AE-99EF-3DD1EFF46E7B". You then add the following declaration inside your package class:
35+
For example, let's assume a new UIContext "UIContextGuid" is to be added. The GUID created (you can create a GUID by clicking on **Tools** > **Create GUID**) is "8B40D5E2-5626-42AE-99EF-3DD1EFF46E7B". You then add the following declaration inside your package class:
3636

3737
```csharp
3838
public const string UIContextGuid = "8B40D5E2-5626-42AE-99EF-3DD1EFF46E7B";

docs/extensibility/image-service-and-catalog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@ Bitmap bitmap = (Bitmap)GelUtilities.GetObjectData(uiObj); // Use this if you ne
394394
```
395395

396396
## How do I use image monikers in a new tool window?
397-
The VSIX package project template was updated for Visual Studio 2015. To create a new tool window, right-click on the VSIX project and select **Add New Item** (**Ctrl**+**Shift**+**A**). Under the Extensibility node for the project language, select **Custom Tool Window**, give the tool window a name, and press the **Add** button.
397+
The VSIX package project template was updated for Visual Studio 2015. To create a new tool window, right-click on the VSIX project and select **Add** > **New Item** (**Ctrl**+**Shift**+**A**). Under the Extensibility node for the project language, select **Custom Tool Window**, give the tool window a name, and press the **Add** button.
398398

399399
These are the key places to use monikers in a tool window. Follow the instructions for each:
400400

0 commit comments

Comments
 (0)