Visual Studio Code - 1.82 #280
rogerxu
started this conversation in
Show and tell
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Release version 1.82
Visual Studio Code August 2023
Built-in port forwarding
Forward local server ports from within VS Code. This feature allows you to share locally running services over the internet to other people and devices. To use it, select the Forward a Port button in the Ports view available in the Panel region (Ports: Focus on Ports View).
Sticky Scroll updates
Scrolls horizontally with editor, display last line in scope, folding UI.
New diff editor features
Detect moved code
Use
"diffEditor.experimental.showMoves": true
or in the diff editor context menu.Collapsed unchanged code headers
Use
"diffEditor.hideUnchangedRegions.enabled": true
or select the map icon in the editor context menu to enable collapsing unchanged code blocks.Dynamic layout
If the width of the diff editor is too small, the editor automatically switches to inline view.
Set
"diffEditor.useInlineViewWhenSpaceIsLimited": false
to disable this behavior.Command Center displayed by default
Quickly open files or run commands from the title bar.
WebAssembly debugging
Decompile WASM code to step through and set breakpoints.
New TypeScript refactorings
Move to File
The Move to file refactoring for JavaScript and TypeScript lets you move a class, function, or constant into an existing file. This will also automatically update all references to the symbol and update imports as needed.
Inline Variables
The Inline variable refactoring for JavaScript and TypeScript replaces all occurrences of a variable with its constant value.
Preview: GitHub Copilot
CreateWorkspace command previews file structure of proposed code.
Beta Was this translation helpful? Give feedback.
All reactions