1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-03 15:18:01 +00:00

Add Enable Breakpoints For Version 1.26 Release as a VSCode til

This commit is contained in:
jbranchaud
2018-08-16 11:19:38 -05:00
parent 0fbaad7a09
commit dcb0798a9a
2 changed files with 21 additions and 1 deletions

View File

@@ -10,7 +10,7 @@ smart people at [Hashrocket](http://hashrocket.com/).
For a steady stream of TILs from a variety of rocketeers, checkout For a steady stream of TILs from a variety of rocketeers, checkout
[til.hashrocket.com](https://til.hashrocket.com/). [til.hashrocket.com](https://til.hashrocket.com/).
_699 TILs and counting..._ _700 TILs and counting..._
--- ---
@@ -804,6 +804,7 @@ _699 TILs and counting..._
## VSCode ## VSCode
- [Add The VSCode CLI To Your Path](vscode/add-the-vscode-cli-to-your-path.md) - [Add The VSCode CLI To Your Path](vscode/add-the-vscode-cli-to-your-path.md)
- [Enable Breadcrumbs For Version 1.26 Release](vscode/enable-breadcrumbs-for-version-126-release.md)
- [Open An Integrated Terminal Window](vscode/open-an-integrated-terminal-window.md) - [Open An Integrated Terminal Window](vscode/open-an-integrated-terminal-window.md)
- [Toggle Between Terminals](vscode/toggle-between-terminals.md) - [Toggle Between Terminals](vscode/toggle-between-terminals.md)

View File

@@ -0,0 +1,19 @@
# Enable Breadcrumbs For Version 1.26 Release
The latest release of Code ([Version
1.26](https://code.visualstudio.com/updates/v1_26)) brings about a lot of
exciting new features -- including file breadcrumbs at the top of each file
editor view.
![Breadcrumbs feature in action](https://i.imgur.com/wubUn6c.png)
By default this feature is not enabled. You can enable it from User Settings
(`Cmd+Shift+P`, 'User Settings'). From the User Settings view, you can
search for `breadcrumbs` and you'll see the following item:
```json
"breadcrumbs.enabled": false,
```
Use the pencil to override it to `true` and you'll have that trail of
breadcrumbs waiting for you.