Skip to content

Minor corrections to vscode getting started guide #1080

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 17, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions documentation/articles/getting-started-with-vscode-swift.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,9 @@ which can include:
![Package swift actions](/assets/images/getting-started-with-vscode-swift/language-features/package_actions.png)

<div class="warning" markdown="1">
Before language features can be used you must perform a `swift build` command on your
project either on the command line or using a task in VS Code. This populates the index in SourceKit-LSP.
Prior to Swift 6.1 you must perform a `swift build` command on your project either
on the command line or using a task in VS Code Before language features can be used.
This populates the index in SourceKit-LSP.
</div>

## Swift Tasks
Expand Down Expand Up @@ -142,10 +143,9 @@ target in your Swift package. You may configure these yourself by adding a
{
"configurations": [
{
"type": "lldb",
"type": "swift",
"name": "Debug swift-executable",
"request": "launch",
"sourceLanguages": ["swift"],
"args": ["--hello", "world"],
"cwd": "${workspaceFolder}",
"program": "${workspaceFolder}/.build/debug/swift-executable",
Expand Down