Can not init any custom Struct with FuzzyAutocomplete enabled (doesn't show autocompletion). Settings are default. Xcode version 7.1.1 and the language is Swift
struct Book {
var bookName: String
var bookIndex: Int
var keyword: String?
}
let book = Book(
// OR
let book = Book.init
Can not init any custom Struct with FuzzyAutocomplete enabled (doesn't show autocompletion). Settings are default. Xcode version 7.1.1 and the language is Swift