Swift Autocomplete
Swift autocompletion in Sublime Text using SourceKitten
Details
Installs
- Total 7K
- Win 0
- Mac 6K
- Linux 1K
Aug 29 | Aug 28 | Aug 27 | Aug 26 | Aug 25 | Aug 24 | Aug 23 | Aug 22 | Aug 21 | Aug 20 | Aug 19 | Aug 18 | Aug 17 | Aug 16 | Aug 15 | Aug 14 | Aug 13 | Aug 12 | Aug 11 | Aug 10 | Aug 9 | Aug 8 | Aug 7 | Aug 6 | Aug 5 | Aug 4 | Aug 3 | Aug 2 | Aug 1 | Jul 31 | Jul 30 | Jul 29 | Jul 28 | Jul 27 | Jul 26 | Jul 25 | Jul 24 | Jul 23 | Jul 22 | Jul 21 | Jul 20 | Jul 19 | Jul 18 | Jul 17 | Jul 16 | Jul 15 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Mac | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 2 | 3 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 2 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
[!WARNING] This probably hasn't worked for years :) don't bother trying
SublimeTextSwiftAutocomplete
Swift autocomplete and documentation in Sublime Text 3, using SourceKitten.
Installation
- Install SourceKitten (
brew install sourcekitten
) - Clone this repository to the Sublime packages directory
Usage
- Open your project top-most directory in Sublime (e.g.
cd ~/projects/MyProject && subl .
)
Notes
- SublimeTextSwiftAutocomplete doesn't read Xcode project files, but instead uses the top-most directory open in Sublime.
- The source of SublimeTextSwiftAutocomplete is simple so hopefully it should be easy to contribute to (please do!). I'm open for discussion on the repository issues if you want to discuss / you're at all unsure how to approach a problem.
For contributing
- Run the test runner:
./run_tests
- If you're contributing, try to write a test to capture the problem
These are the main components of the plugin:
- subl.py
: this file is entry point to the plugin from Sublime - on_query_completions
is an event handler method provided by Sublime Text's API, so Sublime Text will call the method when attempting to autocomplete.
- subl_source_kitten.py
is purely to convert output from SourceKitten into a format that can be output in Sublime Text.
- source_kitten.py
communicates with the sourcekitten
- exactly in the same way as you would from a bash shell. Parses the output from JSON into Python objects.
- swift_project.py
deals with the “project” (i.e. which source files should be passed in to SourceKitten)