Skip to content

Commit 670b03f

Browse files
committed
Update UI reference articles
1 parent a47baa0 commit 670b03f

11 files changed

+17
-12
lines changed

.openpublishing.redirection.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
{
22
"redirections": [
3+
{
4+
"source_path": "docs/ide/reference/immediate-window.md",
5+
"redirect_url": "/visualstudio/ide/immediate-window",
6+
"redirect_document_id": false
7+
},
38
{
49
"source_path": "docs/ide/reference/miscellaneous-files.md",
510
"redirect_url": "/visualstudio/ide/miscellaneous-files",

docs/debugger/debugger-windows.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ You can open most debugger windows while you're debugging your program. To see a
2222
|Autos|CTRL+ALT+V, A|[Autos and Locals Windows](../debugger/autos-and-locals-windows.md)|
2323
|Locals|CTRL+ALT+V, L|[Autos and Locals Windows](../debugger/autos-and-locals-windows.md)|
2424
|Call Stacks|CTRL+ALT+C|[How to: Use the Call Stack Window](../debugger/how-to-use-the-call-stack-window.md)|
25-
|Immediate|CTRL+ALT+I|[Immediate Window](../ide/reference/immediate-window.md)|
25+
|Immediate|CTRL+ALT+I|[Immediate Window](../ide/immediate-window.md)|
2626
|Parallel Stacks|CTR:+SHIFT+D, S|[Using the Parallel Stacks Window](../debugger/using-the-parallel-stacks-window.md)|
2727
|Parallel Watch|CTR:+SHIFT+D, (1, 2, 3, 4)|[Get started Debugging Multithreaded Applications](../debugger/get-started-debugging-multithreaded-apps.md)|
2828
|Threads|CTRL+ALT+H|[View threads in the Visual Studio debugger](../debugger/walkthrough-debugging-a-multithreaded-application.md)|

docs/debugger/toc.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -362,8 +362,8 @@
362362
href: /visualstudio/bridge/bridge-to-kubernetes-vs
363363
- name: Debug with Container Tools >>
364364
href: ../containers/edit-and-refresh.md
365-
- name: Immediate window
366-
href: ../ide/reference/immediate-window.md
365+
- name: Use the Immediate window
366+
href: ../ide/immediate-window.md
367367
- name: Work with...
368368
items:
369369
- name: .NET

docs/debugger/walkthrough-debugging-at-design-time.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ To debug XAML code behind an app from the XAML designer, such as declarative dat
2323

2424
## Use the Immediate window
2525

26-
You can use the Visual Studio **Immediate** window to execute a function or subroutine without running your app. If the function or subroutine contains a breakpoint, Visual Studio will break at the breakpoint. You can then use the debugger windows to examine your program state. This feature is called *debugging at design time*. For detailed information, see [Use the Immediate window](../ide/reference/immediate-window.md)
26+
You can use the Visual Studio **Immediate** window to execute a function or subroutine without running your app. If the function or subroutine contains a breakpoint, Visual Studio will break at the breakpoint. You can then use the debugger windows to examine your program state. This feature is called *debugging at design time*. For detailed information, see [Use the Immediate window](../ide/immediate-window.md)
2727

2828
The following example is in Visual Basic. You can also use the **Immediate** window at design time in C#, F#, and C++/CLI apps. For C++/CLI, compile without the /clr option to use the Immediate window.
2929

docs/ide/productivity-features.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ Debugging can take time, but the following tips can help you speed up the proces
158158

159159
To add a DataTip, the debugger must be in break mode. Place the cursor on the variable, and then choose the pin button on the DataTip that appears. When debugging is stopped, a blue pin icon appears in the source file next to the line of code that contains the variable. If you point to the blue pin, the value of the variable from the most recent debugging session appears.
160160

161-
- **Clear the Immediate window**. You can erase the contents of the [Immediate window](../ide/reference/immediate-window.md) at design time by entering `>cls` or `>Edit.ClearAll`
161+
- **Clear the Immediate window**. You can erase the contents of the [Immediate window](../ide/immediate-window.md) at design time by entering `>cls` or `>Edit.ClearAll`
162162

163163
For more information about other commands, see [Visual Studio command aliases](../ide/reference/visual-studio-command-aliases.md).
164164

docs/ide/reference/new-file-command.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,6 @@ This example creates a new web page "test1.htm" and opens it in the source code
6464

6565
- [Visual Studio Commands](../../ide/reference/visual-studio-commands.md)
6666
- [Command Window](../../ide/reference/command-window.md)
67-
- [Immediate Window](../../ide/reference/immediate-window.md)
67+
- [Immediate Window](../../ide/immediate-window.md)
6868
- [Find/Command Box](../../ide/find-command-box.md)
6969
- [Visual Studio Command Aliases](../../ide/reference/visual-studio-command-aliases.md)

docs/ide/reference/open-file-command.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,6 @@ File.OpenFile "C:\My Projects\project1\Test1.css" /e:"Source Code (text) Editor"
6060

6161
- [Visual Studio commands](../../ide/reference/visual-studio-commands.md)
6262
- [Command window](../../ide/reference/command-window.md)
63-
- [Immediate window](../../ide/reference/immediate-window.md)
63+
- [Immediate window](../../ide/immediate-window.md)
6464
- [Find/Command box](../../ide/find-command-box.md)
6565
- [Visual Studio command aliases](../../ide/reference/visual-studio-command-aliases.md)

docs/ide/reference/visual-studio-commands.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ms.subservice: general-ide
1414
---
1515
# Visual Studio commands
1616

17-
You can enter Visual Studio commands in the [**Command** window](../../ide/reference/command-window.md), [**Immediate** window](../../ide/reference/immediate-window.md), or **Find/Command** box. In each case, the greater than sign (`>`) indicates that a command, rather than a search or debug operation, follows.
17+
You can enter Visual Studio commands in the [**Command** window](../../ide/reference/command-window.md), [**Immediate** window](../../ide/immediate-window.md), or **Find/Command** box. In each case, the greater than sign (`>`) indicates that a command, rather than a search or debug operation, follows.
1818

1919
You can find a complete list of commands and their syntax on the **Keyboard** page in **Tools** > **Options** > **Environment**.
2020

docs/ide/visual-csharp-intellisense.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ms.date: 03/28/2024
1313
---
1414
# C# IntelliSense
1515

16-
C# IntelliSense is a language-specific code-completion aid. It's available to you when you write C# code in the code editor and debug it in the [Immediate mode](../ide/reference/immediate-window.md) command window.
16+
C# IntelliSense is a language-specific code-completion aid. It's available to you when you write C# code in the code editor and debug it in the [Immediate mode](../ide/immediate-window.md) command window.
1717

1818
## Completion lists
1919

docs/ide/whats-new-visual-studio-docs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,7 @@ The following people contributed to the Visual Studio docs during this period. T
366366
- [Visual Studio performance tips and tricks](../ide/visual-studio-performance-tips-and-tricks.md) - Update Visual Studio performance tips
367367
- [What's new in Visual Studio 2022](../ide/whats-new-visual-studio-2022.md) - Update What's New for 17.14
368368
- [Add or remove imported namespaces (Visual Basic)](../ide/how-to-add-or-remove-imported-namespaces-visual-basic.md) - Update procedure for Visual Basic Import namespaces
369-
- [Use the Immediate window](../ide/reference/immediate-window.md) - Update article on the Immediate window
369+
- [Use the Immediate window](../ide/immediate-window.md) - Update article on the Immediate window
370370
- [JavaScript IntelliSense](../ide/javascript-intellisense.md) - Refactor JavaScript/TypeScript editor content
371371
- [Add Visual Studio editor support for other languages](../ide/adding-visual-studio-editor-support-for-other-languages.md) - Updates for user feedback
372372
- [Customize the scroll bar](../ide/how-to-track-your-code-by-customizing-the-scrollbar.md) - Updates for user feedback on track changes

0 commit comments

Comments
 (0)