https://github.com/trawor/XToDo
Xcode plugin to collect and list the `TODO`,`FIXME`,`???`,`!!!!`
https://github.com/trawor/XToDo
Last synced: 5 months ago
JSON representation
Xcode plugin to collect and list the `TODO`,`FIXME`,`???`,`!!!!`
- Host: GitHub
- URL: https://github.com/trawor/XToDo
- Owner: trawor
- Created: 2013-12-14T02:06:53.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2016-06-16T09:34:20.000Z (almost 9 years ago)
- Last Synced: 2024-10-29T23:23:27.864Z (6 months ago)
- Language: Objective-C
- Homepage: http://imi.im/xtodo
- Size: 712 KB
- Stars: 1,543
- Watchers: 53
- Forks: 179
- Open Issues: 27
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-ios-cn - 官网
README
## XToDo -- Xcode plugin


### What Can XToDo do?
- collect and list the `TODO`,`FIXME`,`???`,`!!!`
- show stat for an item finished or not (still can not switch on/off)
- filter results if you have too much todos
- snippets make a todo comment easily
- standalone App if you'd like not to wait for 10-sec Xcode starting### Install
clone this repo, Build the project and it's done!or you can download from [this link](https://www.dropbox.com/s/bgn4x4i9rt7s0uw/XToDo.xcplugin.zip) and move the plugin to path
`~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/`
then restart Xcode### Usage
Open any project and use ctrl+t to trigger the List Window on/off
### FAQ
#### not work for new Xcode ?
Please run this in your Terminal:
```
find ~/Library/Application\ Support/Developer/Shared/Xcode/Plug-ins -name Info.plist -maxdepth 3 | xargs -I{} defaults write {} DVTPlugInCompatibilityUUIDs -array-add `defaults read /Applications/Xcode.app/Contents/Info.plist DVTPlugInCompatibilityUUID`
```
and remember to change the Xcode path `/Applications/Xcode.app` if you have a customize Xcode app name or folder like `/Applications/Xcode-beta.app`