<div dir="ltr">Actually, I use:<br><br>self toDo: &#39;Not forget to refactor this!!! It&#39;s ugly!!! bla bla bla...&#39;.<br><br>And then I look up for senders of toDo: with alt+n<br><br>The implementation is:<br><br>Object&gt;&gt;toDo: aString <br>
&nbsp;&nbsp;&nbsp; &quot;Do nothing, just annotation&quot;<br>&nbsp;&nbsp;&nbsp; ^self<br><br>I think it&#39;s more descriptive than just a Symbol flag. But, it all depends of what you are used to.<br><br><br>Cheers,<br><br>-- <br>Mariano.<br><br><div class="gmail_quote">
On Tue, Sep 30, 2008 at 7:36 AM, Norbert Hartl <span dir="ltr">&lt;<a href="mailto:norbert@hartl.name">norbert@hartl.name</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<div class="Ih2E3d">On Tue, 2008-09-30 at 05:31 -0500, Mark Volkmann wrote:<br>
&gt; If I put TODO comments in my code to mark things I still need to<br>
&gt; finish, is there an easy way to get a list of all of those? For that<br>
&gt; matter, how do you search all the code in a given category for a given<br>
&gt; string?<br>
&gt;<br>
</div>Searching for strings inside the code you can do by selecting<br>
a string and press ALT-Shitf-e. For your purpose you might have<br>
a look at Object&gt;&gt;flag: This way you mark your code this way<br>
<br>
self flag: #todo<br>
<br>
Then you can select todo and press Alt-n to get all senders<br>
of this symbol.<br>
<font color="#888888"><br>
Norbert<br>
</font><div><div></div><div class="Wj3C7c"><br>
_______________________________________________<br>
Beginners mailing list<br>
<a href="mailto:Beginners@lists.squeakfoundation.org">Beginners@lists.squeakfoundation.org</a><br>
<a href="http://lists.squeakfoundation.org/mailman/listinfo/beginners" target="_blank">http://lists.squeakfoundation.org/mailman/listinfo/beginners</a><br>
</div></div></blockquote></div><br><br clear="all"><br>
</div>