Skip to content

Commit 00662f2

Browse files
authored
Delete unnecessary spaces
1 parent 20cfa01 commit 00662f2

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ms.assetid: 52f12785-1c51-4c2c-8228-c8e10316cd83
66
author: "gregvanl"
77
ms.author: "gregvanl"
88
manager: jillfra
9-
ms.workload:
9+
ms.workload:
1010
- "vssdk"
1111
---
1212
# Add a Language Server Protocol extension
@@ -83,9 +83,9 @@ textDocument/rename | yes
8383
## Getting started
8484

8585
> [!NOTE]
86-
> Starting with Visual Studio 15.8 Preview 3, support for the common Language Server Protocol is built into Visual Studio. If you've built LSP extensions using our preview [Language Server Client VSIX](https://marketplace.visualstudio.com/items?itemName=vsext.LanguageServerClientPreview) version, they will stop working once to you've upgraded to 15.8 Preview 3 or higher. You will need to do the following to get your LSP extensions working again:
86+
> Starting with Visual Studio 15.8 Preview 3, support for the common Language Server Protocol is built into Visual Studio. If you've built LSP extensions using our preview [Language Server Client VSIX](https://marketplace.visualstudio.com/items?itemName=vsext.LanguageServerClientPreview) version, they will stop working once to you've upgraded to 15.8 Preview 3 or higher. You will need to do the following to get your LSP extensions working again:
8787
>
88-
> 1. Uninstall the Microsoft Visual Studio Language Server Protocol Preview VSIX. Starting with 15.8 Preview 4, every time you perform an upgrade in Visual Studio, we will automatically detect and remove the preview VSIX for you during the upgrade process.
88+
> 1. Uninstall the Microsoft Visual Studio Language Server Protocol Preview VSIX. Starting with 15.8 Preview 4, every time you perform an upgrade in Visual Studio, we will automatically detect and remove the preview VSIX for you during the upgrade process.
8989
>
9090
> 2. Update your Nuget reference to the latest non-preview version for [LSP packages](https://www.nuget.org/packages/Microsoft.VisualStudio.LanguageServer.Client).
9191
>
@@ -340,7 +340,7 @@ Follow these steps below to add support for settings to your LSP language servic
340340
}
341341
```
342342
### Enabling diagnostics tracing
343-
Diagnostics tracing can be enabled to output all messages between the client and server, which can be useful when debugging issues. To enable diagnostic tracing, do the following:
343+
Diagnostics tracing can be enabled to output all messages between the client and server, which can be useful when debugging issues. To enable diagnostic tracing, do the following:
344344

345345
4. Open or create the workspace settings file *VSWorkspaceSettings.json* (see "User editing of settings for a workspace").
346346
5. Add the following line in the settings json file:
@@ -356,7 +356,7 @@ There are three possible values for trace verbosity:
356356
* "Messages": tracing turned on but only method name and response ID are traced.
357357
* "Verbose": tracing turned on; the entire rpc message is traced.
358358

359-
When tracing is turned on the content is written to a file in the *%temp%\VisualStudio\LSP* directory. The log follows the naming format *[LanguageClientName]-[Datetime Stamp].log*. Currently, tracing can only be enabled for open folder scenarios. Opening a single file to activate a language server does not have diagnostics tracing support.
359+
When tracing is turned on the content is written to a file in the *%temp%\VisualStudio\LSP* directory. The log follows the naming format *[LanguageClientName]-[Datetime Stamp].log*. Currently, tracing can only be enabled for open folder scenarios. Opening a single file to activate a language server does not have diagnostics tracing support.
360360

361361
### Custom messages
362362

@@ -419,7 +419,7 @@ internal class MockCustomLanguageClient : MockLanguageClient, ILanguageClientCus
419419
}
420420

421421
public async Task SendServerCustomNotification(object arg)
422-
{
422+
{
423423
await this.customMessageRpc.NotifyWithParameterObjectAsync("OnCustomNotification", arg);
424424
}
425425

0 commit comments

Comments
 (0)