diff --git a/README.md b/README.md index ac9e822..2f7a3e6 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/vscode/open-an-integrated-terminal-window.md b/vscode/open-an-integrated-terminal-window.md new file mode 100644 index 0000000..95dcfd4 --- /dev/null +++ b/vscode/open-an-integrated-terminal-window.md @@ -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.