<div class="markdown">
<p>On 31 Jan 2013, at 16:18, Eric A. Meyer wrote:</p>
<blockquote>
<p>I was hoping to reproduce the Thunderbird "Send Message" keybinding, which is command-return. Based on the "Keybinding selects - master list?", there doesn't seem to be a plain old "send:" or "sendMessage:" action, as opposed to "sendAndArchiveParent:" or "sendAndMoveParentToMailbox:".<br>
Is there one, or should there be one, or can the equivalent of shift-command-D already be bound and I just haven't figured out how?</p>
</blockquote>
<p>Oops, forgot to add that one to the list. I'll add this to the manual page:</p>
<table><thead>
<tr>
<th>Selector</th>
<th>Argument</th>
<th>Action</th>
</tr>
</thead><tbody>
<tr>
<td>send:</td>
<td>-</td>
<td>Send message</td>
</tr>
</tbody></table>
<blockquote>
<p>Also, I'm not quite sure how to define the particular combination of command-return in the .plist, so I could use some help with that one too.</p>
</blockquote>
<p>This one came up on the mailing list a month ago. I had to fix some thing to make it work properly</p>
<pre><code>"@\U000D" = "send:"; // Return key
"@\U0003" = "send:"; // Enter key (numeric keypad)
</code></pre>
<p>At least it works on my keyboard :-)</p>
<blockquote>
<p>If I can figure this out, I may create and share a Thunderbird keybinding file if one doesn't exist already. I searched Google, but nothing like that turned up.</p>
</blockquote>
<p>I have only seen the one for Postbox included with MailMate. Don't really know how much Postbox and Thunderbird differ with respect to key bindings, but the key binding above should also be part of the Postbox key bindings: <a href="http://www.postbox-inc.com/support/postbox_shortcuts">http://www.postbox-inc.com/support/postbox_shortcuts</a></p>
<hr>
<p>Benny</p>
</div>