From 2866ff3afb40950fa6c3ceecef6122b69e009340 Mon Sep 17 00:00:00 2001 From: Christof Marti Date: Thu, 26 Jan 2017 09:22:24 -0800 Subject: [PATCH] Fix typos (fixes #19446) --- .../electron-browser/editor/editorWalkThrough.md | 10 +++++----- .../welcomePage/electron-browser/welcomePage.html | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/vs/workbench/parts/walkThrough/electron-browser/editor/editorWalkThrough.md b/src/vs/workbench/parts/walkThrough/electron-browser/editor/editorWalkThrough.md index 4dadac368f3..c3f2283e892 100644 --- a/src/vs/workbench/parts/walkThrough/electron-browser/editor/editorWalkThrough.md +++ b/src/vs/workbench/parts/walkThrough/electron-browser/editor/editorWalkThrough.md @@ -14,7 +14,7 @@ The core editor in VS Code is packed with features. This page highlights a numb ### Multi-Cursor Editing -Using multiple cursors allows you to edit multiple parts of the document at once, greatly improving your productivity. Try the following actions in the the code block below: +Using multiple cursors allows you to edit multiple parts of the document at once, greatly improving your productivity. Try the following actions in the code block below: 1. Box Selection - press any combination of kb(cursorColumnSelectDown), kb(cursorColumnSelectRight), kb(cursorColumnSelectUp), kb(cursorColumnSelectLeft) to select a block of text, you can also press `⇧⌥``Shift+Alt` while selecting text with the mouse. 2. Add a cursor - press kb(editor.action.insertCursorAbove) or kb(editor.action.insertCursorBelow) to add a new cursor above or below, you can also use your mouse with `⌥+Click``Alt+Click` to add a cursor anywhere. 3. Create cursors on all occurrences of a string - select one instance of a string e.g. `background-color` and press kb(editor.action.selectHighlights). Now you can replace all instances by simply typing. @@ -82,7 +82,7 @@ function Book(title, author) { } ``` -> **JSDoc Tip:** The example above also showcased another way to get IntellSense hints by using `JSDoc` comments. You can try this out by invoking the `Book` function and seeing the enhanced context in the IntelliSense Experience for the function as well as parameters. +> **JSDoc Tip:** The example above also showcased another way to get IntelliSense hints by using `JSDoc` comments. You can try this out by invoking the `Book` function and seeing the enhanced context in the IntelliSense Experience for the function as well as parameters. ### Formatting @@ -144,7 +144,7 @@ You can greatly accelerate your editing through the use of snippets. Simply sta ### Emmet -Emmet takes the snippets idea to a whole new level: you can type CSS-like expressions that can be dynamically parsed, and produce output depending on what you type in the abbreviation. To use emmet simply press tab after a valid piece for Emmet syntax and the expansion will occur. Try it by pressing tab after `ul>li.item$*5` to see Emmet in action. +Emmet takes the snippets idea to a whole new level: you can type CSS-like expressions that can be dynamically parsed, and produce output depending on what you type in the abbreviation. To use Emmet simply press tab after a valid piece for Emmet syntax and the expansion will occur. Try it by pressing tab after `ul>li.item$*5` to see Emmet in action. ```html ul>li.item$*5 @@ -156,10 +156,10 @@ ul>li.item$*5 ## Thanks! Well if you have got this far then you will have touched on some of the editing features in Visual Studio Code. But don't stop now :) We have lots of additional [documentation](https://code.visualstudio.com/docs) and [introductory videos](https://code.visualstudio.com/docs/introvideos/overview) for the product that will help you learn how to use it. And while you are here, here are a few additional things you can try: -- Open the Integrated Terminal by pressing kb(workbench.action.terminal.toggleTerminal) then see whats possible by [reviewing the terminal documentation](https://code.visualstudio.com/docs/editor/integrated-terminal) +- Open the Integrated Terminal by pressing kb(workbench.action.terminal.toggleTerminal) then see what's possible by [reviewing the terminal documentation](https://code.visualstudio.com/docs/editor/integrated-terminal) - Work with version control by pressing kb(workbench.view.git) understand how to stage, commit, change branches, and view diffs and more by reviewing the [version control documentation](https://code.visualstudio.com/docs/editor/versioncontrol) - Browse thousands of extensions in our integrated gallery by pressing with kb(workbench.view.extensions) the [documentation](https://code.visualstudio.com/docs/editor/extension-gallery) will show you how to see the most popular extensions, disable installed ones and more. -OK thats all for now, +OK that's all for now, Happy Coding! \ No newline at end of file diff --git a/src/vs/workbench/parts/welcomePage/electron-browser/welcomePage.html b/src/vs/workbench/parts/welcomePage/electron-browser/welcomePage.html index 799ff7e65a4..d39e2d1b235 100644 --- a/src/vs/workbench/parts/welcomePage/electron-browser/welcomePage.html +++ b/src/vs/workbench/parts/welcomePage/electron-browser/welcomePage.html @@ -37,8 +37,8 @@
  • -
  • -
  • +
  • +
  • -- GitLab