SublimeTextSwiftAutocomplete icon indicating copy to clipboard operation
SublimeTextSwiftAutocomplete copied to clipboard

Swift autocompletion in Sublime Text using SourceKitten

Results 10 SublimeTextSwiftAutocomplete issues
Sort by recently updated
recently updated
newest added

I'm unable to get the completion to work on my machine. Seeing a JSON parse error in console, sourcekitten installed and works when using it standalone. Error: ``` Traceback (most...

Thank you for this extension. I am trying to use it in Linux, and clearly did not get something right. Swiftkitten is installed and has been added to the $PATH,...

Use in order: - Preference from `xcodeproj` - Preference in Sublime settings - Default (is there a way to lookup the most recent iOS SDK to use as default?)

enhancement

Sublime Text has a popup view that: > Shows a popup displaying HTML content. Specifically, there's a flag for this popup view to work with autocomplete: > sublime.COOPERATE_WITH_AUTO_COMPLETE. Causes the...

enhancement

- Search the project directory for an `xcodeproj` directory - Read the `xcodeproj` to get the actual list of source files for the project. - Use in place of `arg_files`...

enhancement

https://github.com/Dan2552/SourceKittenSubl/issues/18

bug

In the Swift/SourceKit source there are [Python bindings for using SourceKit directly](https://github.com/apple/swift/blob/master/tools/SourceKit/bindings/python/sourcekitd/request.py) I couldn't work out how to compile SourceKit, but from the comment here, I think it would be...

enhancement

A SourceKitDaemon adapter could be written with a configuration to choose between SourceKitten/SourceKitDaemon) It just needs to implement the same methods as the `source_kitten` module: - `complete(offset, file, project_directory, text)`...

enhancement

``` GridPoint() ^ ``` suggests correctly: ``` GridPoint(col: , row: , floor: ) ``` but ``` let gridPoint = GridPoint() ^ ``` gets results as if no context