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

Add Open An Integrated Terminal Window as a VSCode til

This commit is contained in:
jbranchaud
2017-12-14 15:09:22 -06:00
parent 8d05a9a2f1
commit 6b526d9518
2 changed files with 19 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
[til.hashrocket.com](https://til.hashrocket.com/).
_592 TILs and counting..._
_593 TILs and counting..._
---
@@ -37,6 +37,7 @@ _592 TILs and counting..._
* [tmux](#tmux)
* [Unix](#unix)
* [Vim](#vim)
* [VSCode](#vscode)
* [Webpack](#webpack)
* [Workflow](#workflow)
@@ -691,6 +692,10 @@ _592 TILs and counting..._
- [Whole Line Auto-Completion](vim/whole-line-auto-completion.md)
- [Wrap With Some Room](vim/wrap-with-some-room.md)
## VSCode
- [Open An Integrated Terminal Window](vscode/open-an-integrated-terminal-window.md)
## Webpack
- [Better Module Imports With Aliases](webpack/better-module-imports-with-aliases.md)

View File

@@ -0,0 +1,13 @@
# Open An Integrated Terminal Window
VSCode offers an integrated terminal that can be used for any of your bash
needs -- tests, various git commands, etc.
You can toggle the integrated terminal window open and closed with
```
Ctrl+`
```
The shell session will be opened to the working directory of your current
project.