[Xcode] Special Comment Keywords
In C, Objective-C, C++,
# pragma mark xxx // TODO: xxx // FIXME: xxx // !!! xxx // ??? xxx
In Python,
# !!!!: xxxx # TODO: xxxx # MARK: xxxx # ????: xxxx # FIXME: xxxx
To replace exiting ### xxxx ### comments with ### MARK: xxx, find ###\s*([0-9a-zA-Z ]+)### (in regex mode), and replace with ### MARK: \1.
October 16th, 2008 at 10:39 pm
[...] (It looks like there has been some discussion of this already (1,2,3) [...]