So if I want to copy a selector, e.g. to paste it into message names I then have to delete the lass&gt;&gt; part?  Please, can we add a &quot;copy signature&quot; instead of change the semantics of something perfectly useful?<div>
<br></div><div>Also,isn&#39;t &quot;method reference&quot; a better name for aClass&gt;&gt;selector than signature? Signatures typically have arity, return and argument type information .  This is something a little simpler.<br>
<br><div class="gmail_quote">On Sun, Sep 19, 2010 at 2:50 PM,  <span dir="ltr">&lt;<a href="mailto:commits@source.squeak.org">commits@source.squeak.org</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
Chris Muller uploaded a new version of Monticello to project The Trunk:<br>
<a href="http://source.squeak.org/trunk/Monticello-cmm.400.mcz" target="_blank">http://source.squeak.org/trunk/Monticello-cmm.400.mcz</a><br>
<br>
==================== Summary ====================<br>
<br>
Name: Monticello-cmm.400<br>
Author: cmm<br>
Time: 19 September 2010, 4:50:02.156 pm<br>
UUID: 815ed4bb-b5b4-420c-9639-018beb254ae9<br>
Ancestors: Monticello-bf.399<br>
<br>
Change &quot;copy selector&quot; to copy the signature of the method to the clipboard, not just the selector.<br>
<br>
=============== Diff against Monticello-bf.399 ===============<br>
<br>
Item was changed:<br>
  ----- Method: MCCodeTool&gt;&gt;copySelector (in category &#39;menus&#39;) -----<br>
  copySelector<br>
        &quot;Copy the selected selector to the clipboard&quot;<br>
+       self selectedMessageName ifNotNilDo:<br>
+               [ : selector | Clipboard clipboardText:<br>
+                       (self selectedClassOrMetaClass<br>
+                               ifNil: [ selector asString ]<br>
+                               ifNotNilDo: [ : cls | (cls &gt;&gt; selector) signature ]) ]!<br>
-<br>
-       | selector |<br>
-       (selector := self selectedMessageName) ifNotNil:<br>
-               [Clipboard clipboardText: selector asString]!<br>
<br>
<br>
</blockquote></div><br></div>