Add 1.49 highlights
This commit is contained in:
Родитель
1bd7b59fa0
Коммит
20d074d944
|
@ -11,17 +11,21 @@ DownloadVersion: 1.49.0
|
|||
|
||||
<!-- DOWNLOAD_LINKS_PLACEHOLDER -->
|
||||
|
||||
Welcome to the Insiders build. These are the preliminary notes for the August 1.49 release of Visual Studio Code. As we get closer to the release date, you'll find details below about new features and important fixes.
|
||||
Welcome to the August 2020 release of Visual Studio Code. There are a number of updates in this version that we hope you will like, some of the key highlights include:
|
||||
|
||||
Until the August milestone release notes are available, you can still track our progress:
|
||||
* **[Format modified text](#only-format-modified-text)** - Limit formatting to just the code you've changed.
|
||||
* **[Change casing on Search and Replace](#case-changing-in-regex-replace)** - Change text casing during global Search and Replace.
|
||||
* **[Source Control repositories view](#source-control-repositories-view)** - Display pending changes per repository.
|
||||
* **[Filter Debug Console output](#debug-console-filter)** - Quickly filter and find debugging output.
|
||||
* **[Improved JS debugger Auto Attach](#javascript-debugger-improvements)** - "Smart" Auto Attach to Node.js scripts or test runners.
|
||||
* **[TypeScript optional chain refactoring](#convert-to-optional-chain-refactoring)** - Convert multiple checks to concise optional chain.
|
||||
* **[JSDoc @deprecated tag support](#deprecated-tag-support-for-javascript-and-typescript)** - IntelliSense clearly shows APIs marked as deprecated.
|
||||
* **[HTML rename on type](#html-tag-rename-on-type)** - Rename opening and closing HTML tags simultaneously.
|
||||
* **[Notebook UX updates](#notebooks)** - Cell Status bar contributions, enhanced notebook diff editor.
|
||||
|
||||
* **[August iteration plan](https://github.com/microsoft/vscode/issues/104735)** - Review what's planned for the milestone.
|
||||
* **[Commit log](https://github.com/Microsoft/vscode/commits/master)** - GitHub commits to the vscode open-source repository.
|
||||
* **[Closed issues](https://github.com/Microsoft/vscode/issues?q=is%3Aissue+milestone%3A%22August+2020%22+is%3Aclosed)** - Resolved bugs and implemented feature requests in the milestone.
|
||||
>If you'd like to read these release notes online, go to [Updates](https://code.visualstudio.com/updates) on [code.visualstudio.com](https://code.visualstudio.com).
|
||||
|
||||
We really appreciate people trying our new features as soon as they are ready, so check back here often and learn what's new.
|
||||
|
||||
If you find issues or have suggestions, you can enter them in the [VS Code repository](https://github.com/Microsoft/vscode/issues) on GitHub.
|
||||
**Insiders:** Want to try new features as soon as possible? You can download the nightly [Insiders](https://code.visualstudio.com/insiders) build and try the latest updates as soon as they are available. And for the latest Visual Studio Code news, updates, and content, follow us on Twitter [@code](https://twitter.com/code)!
|
||||
|
||||
## Editor
|
||||
|
||||
|
@ -115,7 +119,7 @@ The Debug Console now supports filtering, making it easier for users to find the
|
|||
|
||||
### JavaScript debugger improvements
|
||||
|
||||
**Improved Auto-Attach**
|
||||
**Improved Auto Attach**
|
||||
|
||||
[Auto Attach](https://code.visualstudio.com/docs/nodejs/nodejs-debugging#_auto-attach-feature) can now debug processes even without manually passing an `--inspect` flag to them. When Auto Attach is turned on, by default VS Code uses its "smart" mode to debug any Node.js script outside of `node_modules` folders, as well as some common 'runner' tools such as mocha and ts-node.
|
||||
|
||||
|
@ -157,7 +161,7 @@ Use the new `convert to optional chain` refactoring to quickly convert a sequenc
|
|||
|
||||
Many older codebases have a lot of repetitive null checks that optional chaining can simplify. Now it's easier than ever to automate some of this cleanup.
|
||||
|
||||
### @deprecated tag support for JavaScript and TypeScript
|
||||
### Deprecated tag support for JavaScript and TypeScript
|
||||
|
||||
VS Code now supports the `@deprecated` JSDoc tag in JavaScript and TypeScript files. To mark an API as deprecated, simply add a `@deprecated` JSDoc comment:
|
||||
|
||||
|
@ -192,7 +196,7 @@ We are now better at searching your installed npm packages for potential JavaScr
|
|||
|
||||
You can read more about the improved auto imports behavior [on the TypeScript blog](https://devblogs.microsoft.com/typescript/announcing-typescript-4-0/#smarter-auto-imports).
|
||||
|
||||
### Partial intellisense during project loads
|
||||
### Partial IntelliSense during project loads
|
||||
|
||||
With TypeScript 4.0, VS Code can now provide IntelliSense and other more advanced language features while a large project is still loading. This should allow you to start working with your code faster.
|
||||
|
||||
|
@ -202,7 +206,7 @@ Thanks to TypeScript 4.0, VS Code can offer limited IntelliSense while a large p
|
|||
|
||||
Partial mode IntelliSense will only be used while a project is loading. Once the project as loaded, VS Code will automatically switch over to full IntelliSense. If you work with large JavaScript or TypeScript projects, partial IntelliSense should let you start working with your code almost instantly until more complete, project-wide IntelliSense becomes available.
|
||||
|
||||
### HTML Rename on type
|
||||
### HTML tag rename on type
|
||||
|
||||
There were several bug and performance fixes for 'Rename on Type' in HTML files. When modifying a tag, the feature automatically renames the matching HTML tag. The feature is optional and can be enabled by setting: `"editor.renameOnType": true`.
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче