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/ide/navigate-code-cpp.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -47,7 +47,7 @@ You can open **Go To** with **Ctrl+,**. This action creates a search box over th
47
47
- Properties and events.
48
48
-**Go To Symbol** (**Ctrl 1, S**): Search results include:
49
49
- Results from Go To Types and Go To Members.
50
-
- All remaining C++ language constructs, which includes macros.
50
+
- All remaining C++ language constructs, which include macros.
51
51
52
52
When you first invoke **Go To** with **Ctrl +**, **Go To All** is activated (no filters on search results). You then can select the filter you want by using the buttons near the search box. You can invoke a specific filter using its corresponding keyboard shortcut. Doing so opens the **Go To** search box with that filter preselected. All keyboard shortcuts are configurable.
> Use the **Skip preview reference changes if all references are confirmed** checkbox to make the changes immediately without the preview window popping up first.
43
43
44
-
When adding or modifying a parameter, you will see the **Add Parameter** or **Edit Parameter** window.
44
+
When adding or modifying a parameter, you'll see the **Add Parameter** or **Edit Parameter** window.
45
45
46
46

47
47
@@ -51,7 +51,7 @@ ms.date: "09/18/2022"
51
51
| ----- | ---
52
52
| **Type** | The type of the parameter (int, double, float, etc.)
53
53
| **Name** | The name of the parameter
54
-
| **Optional Parameter** | Makes the parameter optionally specified
54
+
| **Optional Parameter** | Make the parameter optionally specified
55
55
| **Injected Value** | The value inserted into any calls to the function where the parameter isn't specified (only valid for **Add**)
56
56
| **Default value** | The value used by the function if the caller doesn't specify one (only valid for **Optional Parameters**)
Copy file name to clipboardExpand all lines: docs/ide/writing-and-refactoring-code-cpp.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -91,7 +91,7 @@ For some kinds of errors, and common coding patterns, the editor will offer a **
91
91
92
92
In the following example, a `vector` was declared but no definition was found, so the editor offers to include the necessary header file:
93
93
94
-

94
+

95
95
96
96
The editor also offers Quick Fixes for some refactoring opportunities. For example, if you declare a class in a header file, Visual Studio will offer to create a definition for it in a separate .cpp file.
0 commit comments