You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/customization/keybindings.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@ Visual Studio Code lets you perform most tasks directly from the keyboard. This
17
17
18
18
## Keymap Extensions
19
19
20
-
Keyboard shortcuts are vital to productivity and changing keyboarding habits can be tough. To help with this, there is a [Keymaps category](https://marketplace.visualstudio.com/search?target=VSCode&category=Keymaps&sortBy=Downloads) of extensions in the Marketplace. These extensions modify the VS Code shortcuts to match those of other editors so you don't need to learn new keyboard shortcuts.
20
+
Keyboard shortcuts are vital to productivity and changing keyboarding habits can be tough. To help with this, **File** > **Preferences** > **Keymap Extensions** shows you a list of popular keymap extensions. These extensions modify the VS Code shortcuts to match those of other editors so you don't need to learn new keyboard shortcuts. There is also a [Keymaps category](https://marketplace.visualstudio.com/search?target=VSCode&category=Keymaps&sortBy=Downloads) of extensions in the Marketplace.
Copy file name to clipboardExpand all lines: docs/editor/codebasics.md
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -109,7 +109,7 @@ VS Code gives you many options to configure the editor. You can set options glob
109
109
110
110
>**Note for Mac users:** The **Preferences** menu is under **Code** not **File**. For example, **Code** > **Preferences** > **User Settings**.
111
111
112
-
You will see the VS Code [Default Settings](/docs/customization/userandworkspace.md#default-settings) in the left window and your editable `settings.json` on the right. You can easily review and copy settings from `Default Settings`.
112
+
You will see the VS Code [Default Settings](/docs/customization/userandworkspace.md#default-settings) in the left window and your editable `settings.json` on the right. You can easily filter settings in the `Default Settings` using the search box at the top. Copy a setting over to the editable `settings.json` on the right by clicking on the edit icon after the setting. Settings with a fixed set values allow you to pick a value as part of their edit icon menu.
113
113
114
114
After editing your settings, type `kb(workbench.action.files.save)` to save your changes. The changes will take effect immediately.
115
115
@@ -135,7 +135,7 @@ VS Code supports multiple cursors for fast simultaneous edits. You can add secon
> **Tip:** You can also add more cursors with `kb(editor.action.selectHighlights)`, which will add a selection at each occurrence of the current selected text or with `kb(editor.action.changeAll)`, which will add a selection at each occurrence of the current word.
138
+
> **Tip:** You can also add more cursors with `kb(editor.action.selectHighlights)`, which will add a selection at each occurrence of the current selected text.
139
139
140
140
### Shrink/expand selection
141
141
@@ -289,9 +289,9 @@ Argument|Description
289
289
`-v` or `--version` | Print VS Code version (e.g. 0.10.10)
290
290
`-n` or `--new-window`| Opens a new session of VS Code instead of restoring the previous session (default).
291
291
`-r` or `--reuse-window` | Forces opening a file or folder in the last active window.
292
-
`-g` or `--goto` | When used with *file:line:column?*, opens a file at a specific line and optional column position. This argument is provided since some operating systems permit `:` in a file name.
292
+
`-g` or `--goto` | When used with *file:line:character?*, opens a file at a specific line and optional character position. This argument is provided since some operating systems permit `:` in a file name.
293
293
*file* | Name of a file to open. If the file doesn't exist, it will be created and marked as edited. You can specify multiple files by separating each file name with a space.
294
-
*file:line:column?* | Name of a file to open at the specified line and optional column position. You can specify multiple files in this manner, but you must use the `-g` argument (once) before using the *file:line:column?* specifier.
294
+
*file:line:character?* | Name of a file to open at the specified line and optional character position. You can specify multiple files in this manner, but you must use the `-g` argument (once) before using the *file:line:character?* specifier.
295
295
*folder* | Name of a folder to open. You can specify multiple folders.
296
296
`-d` or `--diff` | Open a file difference editor. Requires two file paths as arguments.
297
297
`--locale` | Set the display language (locale) for the VS Code session. Supported locales are: `en-US`, `zh-TW`, `zh-CN`, `fr`, `de`, `it`, `ja`, `ko`, `ru`, `es`
@@ -330,7 +330,7 @@ You've covered the basic user interface - there is a lot more to VS Code. Read
330
330
331
331
**Q: Is it possible to globally search and replace?**
332
332
333
-
**A:** Yes, expand the Search view text box to include a replace text field. You can search and replace across all the files in your workspace.
333
+
**A:** Yes, expand the Search view text box to include a replace text field. You can search and replace across all the files in your workspace. Note that if you did not open VS Code on a folder, the search will only run on the currently open files.
334
334
335
335

Copy file name to clipboardExpand all lines: docs/setup/additional-components.md
-1Lines changed: 0 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,6 @@ Here are a few commonly installed components:
21
21
-[Git](http://git-scm.com/download) - VS Code has built-in support for source code control using Git but requires Git to be installed separately.
22
22
-[Node.js (includes NPM)](https://nodejs.org/) - A platform and runtime for building and running JavaScript applications.
23
23
-[TypeScript](http://typescriptlang.org) - The TypeScript compiler, `tsc`, for transpiling TypeScript to JavaScript.
24
-
-[Typings](https://github.com/typings/typings) - A TypeScript type definition manager so that VS Code can provide IntelliSense (smart code completion) for popular JavaScript frameworks.
25
24
26
25
You'll find the components above mentioned often in our documentation and walkthroughs.
Copy file name to clipboardExpand all lines: docs/setup/mac.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,7 @@ VS Code ships monthly [releases](/updates) and supports auto-update when a new r
31
31
32
32
## Preferences Menu
33
33
34
-
You can configure VS Code through [settings](/docs/customization/userandworkspace.md), [color themes](/docs/customization/themes.md) and [custom keybindings](/docs/customization/keybindings.md) and you will see often see mention in our documentation of the **File** > **Preferences** menu group. On a Mac, the **Preferences** menu group is under **Code**, not **File**.
34
+
You can configure VS Code through [settings](/docs/customization/userandworkspace.md), [color themes](/docs/customization/themes.md) and [custom keybindings](/docs/customization/keybindings.md) and you will often see mention in our documentation of the **File** > **Preferences** menu group. On a Mac, the **Preferences** menu group is under **Code**, not **File**.
Extensions integrate into VS Code's UI, commands, and task running systems so you'll find it easy to work with different technologies through VS Code's shared interface. Check out the VS Code extension [Marketplace](https://marketplace.visualstudio.com/vscode) to see what's available.
0 commit comments