XToDo icon indicating copy to clipboard operation
XToDo copied to clipboard

How to use it in Xcode 8.0?

Open KenmuHuang opened this issue 8 years ago • 7 comments

Xcode 8.0 support Source Editor Extension Tools, We hope XToDo can be used in Xcode 8.0. It's very useful for us. Thanks.

KenmuHuang avatar Sep 18 '16 07:09 KenmuHuang

I second this!

eh1255 avatar Sep 29 '16 12:09 eh1255

Ditto

Enigma644 avatar Oct 08 '16 01:10 Enigma644

Ditto

crazy-zzd avatar Dec 08 '16 02:12 crazy-zzd

Ditto

WuKongCoo1 avatar Dec 19 '16 08:12 WuKongCoo1

ditto

t2ac32 avatar Mar 09 '17 19:03 t2ac32

Here is my workaround until they fix this! In your project go to "Build Phases" > "Run Script" Shell: /bin/sh Code:

TAGS="TODO|FIXME"
find "${SRCROOT}" \( -name "*.h" -or -name "*.m" -or -name "*.swift" \) -print0 | xargs -0 egrep --with-filename --line-number --only-matching "($TAGS).*\$" | perl -p -e "s/($TAGS)/ warning: \$1/"

Check: Show environment variables in build log.

Now lines with TODO and FIXME will now show up as warnings in code and will be listed in the issue navigator.

Enigma644 avatar Mar 09 '17 20:03 Enigma644

能不能我们自己做一个

Z-figaro avatar Jun 08 '17 08:06 Z-figaro