This is a Xcode 5 plugin that patches the autocomplete filter to work the same way the Open Quickly
works.
It performs very well, and the fuzzy matching actually uses Xcode's own IDEOpenQuicklyPattern
.
I wrote a blog post on how I used dtrace
to figure out what to patch: Reverse engineering Xcode with dtrace
Like nifty tools like this plugin? Check out Shortcat, an app that lets you control your Mac more effectively with your keyboard!
- Gives Xcode's autocompletion to be able to filter like
Open Quickly
does - Supports Xcode 5.0.1
- Supports Xcode's learning and context-aware priority system
Tab
now inserts completion rathen than inserting prefix- Compatible with KSImageNamed (be sure to grab the newest version)
- Uses Grand Central Dispatch to parallelise matching
- Productivity++
- Either:
- Install with Alcatraz
- Clone and build the project
- Restart Xcode and enjoy!
- Only tested with Xcode 5 on 10.9
- Hasn't been tested with other plugins (other than
KSImageNamed
)
- Shortest match will always be selected
- Remove requirement to start fuzzy match with first letter of desired match
- Improve performance by parallelising work
- Decrease the weighting of Xcode's priority factor from
1.0
to0.2
- Prepare for KSImageNamed compatibility when KSImageNamed#31 gets merged.
- Now factors in Xcode's learning priority system - #2
Tab
now accepts selected completion as it doesn't make sense to insert prefix with fuzzy matching
- Fixes missing file entries when autocompleting paths - #1
- Implement partial completion support via
Tab
- Initial release