Skip to content

Commit 7694075

Browse files
authored
Update extension references and remove old guide (#902)
1 parent 2b9c6f8 commit 7694075

File tree

8 files changed

+5
-39
lines changed

8 files changed

+5
-39
lines changed

_posts/2022-07-14-vscode-extension.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ title: Swift Extension for Visual Studio Code
66
author: adam-fowler
77
---
88

9-
As Swift is deployed across more platforms, it is important that Swift can be developed on more platforms as well. The [Swift Extension for Visual Studio Code](https://marketplace.visualstudio.com/items?itemName=sswg.swift-lang) provides a cross-platform solution for Swift development supporting macOS, Linux, and Windows.
9+
As Swift is deployed across more platforms, it is important that Swift can be developed on more platforms as well. The [Swift Extension for Visual Studio Code](https://marketplace.visualstudio.com/items?itemName=swiftlang.swift-vscode) provides a cross-platform solution for Swift development supporting macOS, Linux, and Windows.
1010

1111
## Motivation
1212

_posts/2022-08-18-sswg-server-guides.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ The [Swift Server Workgroup](/sswg/) has maintained a set of open source guides
1010

1111
The guides cover a number of useful topics:
1212

13-
* [Setting up your environment](/documentation/server/guides/setup-and-ide-alternatives.html)
13+
* [Setting up your environment](/tools)
1414
* [Building]({{site.url}}/documentation/server/guides/building.html) and [testing]({{site.url}}/documentation/server/guides/testing.html)
1515
* [Profiling]({{site.url}}/documentation/server/guides/performance.html) and [deploying]({{site.url}}/documentation/server/guides/deployment.html) (including AWS, Digital Ocean, Heroku, and GCP)
1616
* [Docker best practices]({{site.url}}/documentation/server/guides/packaging.html)

_posts/2023-08-17-sswg-update-2023.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ We're also excited to see the introduction of [Custom Actor Executors](https://g
4242

4343
Notable highlights in tooling include:
4444

45-
* The [Swift Extension for Visual Studio Code](https://marketplace.visualstudio.com/items?itemName=sswg.swift-lang) reached version 1.0.0 and added new features like Swift Package plugin integration, Test Coverage and Test Explorer support, and more.
45+
* The [Swift Extension for Visual Studio Code](https://marketplace.visualstudio.com/items?itemName=swiftlang.swift-vscode) reached version 1.0.0 and added new features like Swift Package plugin integration, Test Coverage and Test Explorer support, and more.
4646
* Swift Package plugins have seen adoption in many libraries, from formatters and linters, to code generators such as [SwiftProtobuf](https://github.com/apple/swift-protobuf/tree/main/Plugins/SwiftProtobufPlugin), [gRPC swift](https://github.com/grpc/grpc-swift/tree/main/Plugins/GRPCSwiftPlugin), [Smoke](https://github.com/amzn/smoke-framework-application-generate/tree/main/Plugins), and [Soto](https://soto.codes/2022/12/build-plugin-experiments.html).
4747
* [Swiftly](https://github.com/swift-server/swiftly) is now available to try out and provides a simple way to install Swift on Linux and switch between versions.
4848

119 KB
Loading

documentation/articles/getting-started-with-vscode-swift.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ The Swift extension is designed to support the following projects:
3030
[Getting Started Guide on Swift.org](/getting-started/).
3131
2. Download and install [Visual Studio Code](https://code.visualstudio.com/Download).
3232
3. Install the Swift extension from the
33-
[VS Code Marketplace](https://marketplace.visualstudio.com/items?itemName=sswg.swift-lang)
33+
[VS Code Marketplace](https://marketplace.visualstudio.com/items?itemName=swiftlang.swift-vscode)
3434
or directly from within the VS Code extensions pane.
3535

3636
![Installing the vscode-swift extension from the extensions pane](/assets/images/getting-started-with-vscode-swift/installation.png)

documentation/server/guides/index.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ The Swift Server Workgroup and Swift on Server community have developed a number
77

88
They focus on how to compile, test, deploy and debug such application and provides tips in those areas.
99

10-
- [Setup and code editing](/documentation/server/guides/setup-and-ide-alternatives.html)
1110
- [Building](/documentation/server/guides/building.html)
1211
- [Testing](/documentation/server/guides/testing.html)
1312
- [Debugging Memory leaks](/documentation/server/guides/memory-leaks-and-usage.html)

documentation/server/guides/setup-and-ide-alternatives.md

Lines changed: 0 additions & 33 deletions
This file was deleted.

gsoc2024/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ Provide all keyword or punctuator completions that are valid at a certain positi
147147

148148
Swift Macros allow the generation of source code at compile time. While this provides concise code and avoids repetition of common paradigms, understanding the source code can become harder if it is unknown what the macro expands to.
149149

150-
Visual Studio Code using the [Swift Extension](https://marketplace.visualstudio.com/items?itemName=sswg.swift-lang) currently has limited ability to show the code generated by a macro by invoking a code action that replaces the macro by its generated code inside the current source file.
150+
Visual Studio Code using the [Swift Extension](https://marketplace.visualstudio.com/items?itemName=swiftlang.swift-vscode) currently has limited ability to show the code generated by a macro by invoking a code action that replaces the macro by its generated code inside the current source file.
151151

152152
The project's goal is to implement a code action to show the macro-generated code without modifying the current source file. This includes the implementation of a request in [sourcekit-lsp](https://github.com/swiftlang/sourcekit-lsp) to compute the contents of the macro expansion and support in the Visual Studio Swift Extension to display that content. Some initial discussion of how the design could look like can be found in [this thread](https://github.com/swiftlang/sourcekit-lsp/pull/892#discussion_r1358428808).
153153

0 commit comments

Comments
 (0)