This is the rough beginnings of an Atom IDE implementation for Swift.
What it allows you to do right now is:
swift build
)At this stage the package has many rough edges. That said, please do file suggestions, comments and bug reports.
This started life as a package which managed its own breakpoints and launched and interacted with lldb on its own, and a separate package which provided Swift auto-completion.
In the meantime, the Atom IDE project has come along, providing some standardised capabilities and user interfaces for better integration of language features into Atom.
The long-term goal for this package is to migrate into adopting those capabilities.
However, at the moment the integration is restricted to setting/viewing breakpoints, and viewing build warnings and errors. The actual building and debugging process is handled with custom code.
A large part of the motivation for this project is that I'm using Linux a lot at the moment, and so don't have access to Xcode.
As a result, this package is being actively developed on Linux (currently Ubuntu 18.04).
At this early stage of development it's only been tested on Ubuntu 18.04, and macOS 10.12.
On Ubuntu I'm using an unmodified version of swift/lldb that I built locally, roughly equivalent to Swift 4.2.
In theory the package should work fine on any platforms that has swift/lldb installed. If it doesn't, please let me know.
The plan is obviously to integrate fully into the Atom IDE user interface, but note that currently:
Toolbar: Toggle
)You need the following Atom packages:
You can install these with:
apm install language-swift-89 atom-ide-ui tool-bar
Make sure that the package dependencies are installed and enabled.
Go to the preferences for this package and enter paths for the swift
and lldb
executables. In theory they should get picked up from your path if you leave these settings blank, but at this early stage of the package's development, it's safer to enter them explicitly.
Open a Swift project that builds with swift build
.
Set some breakpoints in your source code, using the Atom IDE breakpoints UI.
Choose IDE Swift: Debug
from the command palette.
You can add breakpoints by clicking to the left of the gutter in any source file.
Open the command palette and select Debugger: Show Window Breakpoints
to show a list of all breakpoints, and can manually move/dock this tab to bring it closer to the Swift/lldb repl.
If the build produces warnings or errors, they should show up in the diagnostics panel.
To get this panel to show, open the command palette and select Diagnostics: Toggle Table
.
The toolbar we're using is the one provided by the tool-bar
package.
Note that there is also a toolbar, with debugger-ish looking buttons, provided by the Atom ID user interface.
Obviously that's the one we should be using, and integrating properly with it is high on the list of priorities.
For now though, don't let it fool you!
Just to add to the confusion, the Atom IDE user interface adds a couple of buttons to the toolbar that we are using.
In the screenshot above, the first two buttons are actually the Atom IDE ones, and nothing to do with us!
The Swift Package Manager (which we use as our build system), is a capable package manager, but quite basic as a build system. In particular, it currently doesn't support running scripts or other tools as part of the build, or have a way to specify configuration settings in bulk and apply them uniformly.
To address this, I have an experimental build system layered on top of the Swift Package Manager, which is imaginatively titled Builder.
If the project you are attempting to build/test/debug is using Builder, then the IDE will attempt to use it instead of the Swift Package Manager.
If you're not using Builder, you shouldn't notice any difference.
The bulk of the code is by Sam Deane, Elegant Chaos.
Thanks to: