This commit is contained in:
Andre Weinand 2016-12-12 13:03:29 +01:00
Родитель 9fb35a1c73
Коммит 65e136f55e
1 изменённых файлов: 5 добавлений и 5 удалений

Просмотреть файл

@ -18,7 +18,7 @@ Welcome to the November release of Visual Studio Code. There are a number of sig
* **[New Selection menu](#selection-menu)** - Easily discover and use the editor selection commands.
* **[JavaScript IntelliSense in HTML](#javascript-language-support-in-html)** - Get full JavaScript language support in HTML files.
* **[Markdown preview improvements](#markdown-preview-improvements)** - New settings for font family, size and line height, hide YAML front matter.
* **[UI for Multitarget Debugging](#multitarget-debugging)** - Launch multiple debug sessions simultaneously.
* **[UI for Multitarget Debugging](#multitarget-debugging)** - Launch simultaneous debug sessions.
The release notes are arranged in the following sections related to VS Code focus areas. Here are some further updates:
@ -26,7 +26,7 @@ The release notes are arranged in the following sections related to VS Code focu
* **[Editor](#editor)** - TBD details not mentioned in highlights.
* **[Languages](#languages)** - TBD details not mentioned in highlights.
* **[Extensions](#extensions)** - TBD details not mentioned in highlights.
* **[Debugging](#debugging)** - TBD details not mentioned in highlights.
* **[Debugging](#debugging)** - Add launch configurations easily as snippets through IntelliSense.
* **[Extension Authoring](#extension-authoring)** - TBD details not mentioned in highlights.
## Workbench
@ -205,7 +205,7 @@ The `editor.renderLineHighlight` setting has been updated to support new options
### Sublime Text compatibility
We added four new commands which users from Sublime Text are familiar with:
We added four new commands which users from Sublime Text are familiar with:
- Join Lines - `editor.action.joinLines`
- Transpose characters around the cursor - `editor.action.transpose`
@ -416,8 +416,8 @@ Ever since the text document allows to ask for a [word-range](https://github.com
## Debugger Extension Authoring
In the `launch.json` the top level `debugServer` attribute has been deprecated (and support for it will be removed in the February milestone).
Instead the `debugServer` attribute has to be specified per launch configuration. More details can be found [here](https://github.com/Microsoft/vscode/issues/13783).
- In the `launch.json` the top level `debugServer` attribute has been deprecated (and support for it will be removed in the February milestone). Instead the `debugServer` attribute has to be specified per launch configuration. More details can be found [here](https://github.com/Microsoft/vscode/issues/13783).
- Debugger extensions can now snippets.
### VS Code Debug Protocol