From 6b526d951885b7f480391d167c753ec08e2a18fe Mon Sep 17 00:00:00 2001 From: jbranchaud Date: Thu, 14 Dec 2017 15:09:22 -0600 Subject: [PATCH] Add Open An Integrated Terminal Window as a VSCode til --- README.md | 7 ++++++- vscode/open-an-integrated-terminal-window.md | 13 +++++++++++++ 2 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 vscode/open-an-integrated-terminal-window.md 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.