Skip to content

CleanCocoa/TextKitAutoCompletion

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

88 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TextKitAutoCompletion

Extends TextKit's default auto-completion to support live typing suggestions.

TextKit's auto-completion can be invoked in any NSTextView via F5 or +ESC. It shows dictionary suggestions for the relevant word at point; but you cannot type-to-complete. Typing cancels the completion UI, so you need to hit the invocation key again after you finished typing.

This package fixes that.

Installation

Xcode

Paste this in Xcode's URL field: https://github.com/CleanCocoa/TextKitAutoCompletion

SwiftPM

dependencies: [
    .package(url: "https://github.com/CleanCocoa/TextKitAutoCompletion", branch: "main")
],
targets: [
    .target(
        name: "MyTarget",
        dependencies: [
            "TextKitAutoCompletion",
        ]
    ),

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published