Skip to content

Commit 377f007

Browse files
committed
Fix broken links
1 parent 9fff86f commit 377f007

File tree

26 files changed

+28
-32
lines changed

26 files changed

+28
-32
lines changed

api/extension-guides/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ Here is a list of additional samples from the [VS Code Extensions samples repo](
6464
| [Commenting API Sample](https://github.com/microsoft/vscode-extension-samples/tree/main/comment-sample) | |
6565
| [Document Editing Sample](https://github.com/microsoft/vscode-extension-samples/tree/main/document-editing-sample) | [commands](https://code.visualstudio.com/api/references/vscode-api#commands)<br>[contributes.commands](https://code.visualstudio.com/api/references/contribution-points#contributes.commands) |
6666
| [Getting Started Sample](https://github.com/microsoft/vscode-extension-samples/tree/main/getting-started-sample) | [contributes.walkthroughs](https://code.visualstudio.com/api/references/contribution-points#contributes.walkthroughs) |
67-
| [Test extension](https://github.com/microsoft/vscode-extension-samples/tree/main/test-provider-sample) | [TestController](https://code.visualstudio.com/api/references/vscode-api#TestController)<br>[TestItem](https://code.visualstudio.com.azurewebsites.net/api/references/vscode-api#TestItem) |
67+
| [Test extension](https://github.com/microsoft/vscode-extension-samples/tree/main/test-provider-sample) | [TestController](https://code.visualstudio.com/api/references/vscode-api#TestController)<br>[TestItem](https://code.visualstudio.com/api/references/vscode-api#TestItem) |
6868

6969
## Language Extension Samples
7070

api/references/contribution-points.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -714,7 +714,7 @@ See the [File Icon Theme Guide](/api/extension-guides/file-icon-theme) on how to
714714

715715
## contributes.jsonValidation
716716

717-
Contribute a validation schema for a specific type of `json` file. The `url` value can be either a local path to a schema file included in the extension or a remote server URL such as a [json schema store](https://www.schemastore.org/json).
717+
Contribute a validation schema for a specific type of `json` file. The `url` value can be either a local path to a schema file included in the extension or a remote server URL such as a [json schema store](https://www.schemastore.org/).
718718

719719
```json
720720
{

docs/azure/gettingstarted.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ The [Azure Tools extension pack](https://marketplace.visualstudio.com/items?item
1111

1212
## Get started
1313

14-
**Install the Azure Tools extension pack.** Open VS Code, navigate to the Extensions view, and search for “Azure Tools.” Install the [Azure Tools extension pack](overview.md) from Microsoft.
14+
**Install the Azure Tools extension pack.** Open VS Code, navigate to the Extensions view, and search for “Azure Tools.” Install the [Azure Tools extension pack](/docs/azure/overview.md) from Microsoft.
1515

1616
**Navigate to the Azure Resources view.** Select the Azure icon in the Activity Bar (sidebar) to open the **Azure Resources** view. Once you're signed in to your Azure account, the Azure Resources view displays all your existing resources. You can create and manage these services right from VS Code.
1717

docs/configure/accessibility/accessibility.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ VS Code supports screen readers in the editor using a strategy based on text pag
148148

149149
* Windows: [NVDA](https://www.nvaccess.org) and [JAWS](https://www.freedomscientific.com/products/software/jaws)
150150
* macOS: [VoiceOver](https://support.apple.com/guide/voiceover/welcome/mac)
151-
* Linux: [Orca](https://help.gnome.org/users/orca/stable/introduction.html)
151+
* Linux: [Orca](https://help.gnome.org/users/orca/stable/)
152152

153153
> For NVDA, we recommend that you stay in focus mode and use the hotkeys to navigate, instead of using browse mode.
154154

docs/configure/keybindings.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ To override a specific keyboard shortcut rule with an empty action, you can spec
281281
282282
Keys are string representations for virtual keys and do not necessarily relate to the produced character when they are pressed. More precisely:
283283

284-
* Reference: [Virtual-Key Codes (Windows)](https://msdn.microsoft.com/library/windows/desktop/dd375731)
284+
* Reference: [Virtual-Key Codes (Windows)](https://learn.microsoft.com/en-us/windows/win32/inputdev/virtual-key-codes)
285285
* `kbstyle(tab)` for `VK_TAB` (`0x09`)
286286
* `kbstyle(;)` for `VK_OEM_1` (`0xBA`)
287287
* `kbstyle(=)` for `VK_OEM_PLUS` (`0xBB`)

docs/containers/debug-common.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ Example `launch.json` configuration for debugging a .NET application using `Dock
123123

124124
### node object properties
125125

126-
> These properties are the same as those described in the [VS Code documentation](/docs/nodejs/nodejs-debugging-configuration.md#launch-configuration-attributes) for attaching a debugger to Node.js applications. All properties passed in the `node` object will be passed on to the Node.js debug adaptor, even if not specifically listed below.
126+
> These properties are the same as those described in the [VS Code documentation](/docs/nodejs/nodejs-debugging.md#launch-configuration-attributes) for attaching a debugger to Node.js applications. All properties passed in the `node` object will be passed on to the Node.js debug adaptor, even if not specifically listed below.
127127
128128
| Property | Description | Default |
129129
| --- | --- | --- |

docs/containers/overview.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,5 +95,4 @@ Read on to learn more about
9595
- [Build and run a Node.js app in a container](/docs/containers/quickstart-node.md)
9696
- [Build and run a .NET app in a container](/docs/containers/quickstart-aspnet-core.md)
9797
- [Debug apps within Docker containers](/docs/containers/debug-common.md)
98-
- [Docker application development](https://docs.docker.com/develop)
9998
- [Troubleshooting](/docs/containers/troubleshooting.md)

docs/containers/quickstart-python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ MetaDescription: Develop, build, and debug a Python app in a container, using Vi
88
In this tutorial, you will learn how to:
99

1010
- Create a `Dockerfile` file describing a simple Python container.
11-
- Build, run, and verify the functionality of a [Django](https://www.djangoproject.com/), [Flask](https://flask.palletsprojects.com/en/1.1.x), or General Python app.
11+
- Build, run, and verify the functionality of a [Django](https://www.djangoproject.com/), [Flask](https://flask.palletsprojects.com/en/stable/), or General Python app.
1212
- Debug the app running in a container.
1313

1414
## Prerequisites

docs/cpp/configure-intellisense-crosscompilation.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@ Given the settings above, your `c_cpp_configuration.json` file will look somethi
6969

7070
## Next steps
7171

72-
- For more information about IntelliSense configuration, see [Customizing default settings](/docs/cpp/customize-default-settings-cpp.md).
72+
- For more information about IntelliSense configuration, see [Customizing default settings](/docs/cpp/customize-cpp-settings.md).
7373
- If you have trouble configuring the settings, please start a discussion at [GitHub discussions](https://github.com/microsoft/vscode-cpptools/discussions), or if you find an issue that needs to be fixed, file an issue at [GitHub issues](https://github.com/microsoft/vscode-cpptools/issues).
74-
- Explore the [c_cpp_properties schema](/docs/cpp/c-cpp-properties-schema-reference.md).
7574
- Review the [Overview of the C++ extension](/docs/languages/cpp.md).

docs/cpp/configure-intellisense.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ If you don't have IntelliSense configured, the C/C++ extension shows a yellow in
2121

2222
To configure, select the status bar indicator, which brings up the [configuration Quick Pick](#option-1-select-a-configuration-option-through-the-configuration-quick-pick). The Quick Pick can help you select or install a C/C++ compiler.
2323

24-
If you do not see a status bar indicator, you can also check your project's `c_cpp_properties.json` file. This file stores all of your IntelliSense configuration settings. Navigate to this file by selecting **C/C++: Edit Configurations (UI)** from the Command Palette (`kb(workbench.action.showCommands)`). Check the `IntelliSense mode` to find your configuration. To learn more about the `c_cpp_properties.json` file, you can review the [schema reference](/docs/cpp/c-cpp-properties-schema-reference.md).
24+
If you do not see a status bar indicator, you can also check your project's `c_cpp_properties.json` file. This file stores all of your IntelliSense configuration settings. Navigate to this file by selecting **C/C++: Edit Configurations (UI)** from the Command Palette (`kb(workbench.action.showCommands)`). Check the `IntelliSense mode` to find your configuration.
2525

2626
![Command Palette filtered on C/C++ Edit Configurations command](images/intellisense/edit-configurations-ui.png)
2727

0 commit comments

Comments
 (0)