<div class="markdown">
<p dir="auto">On 12 Aug 2013, at 11:18, Torsten Grust wrote:</p>

<blockquote>
<p dir="auto">is the following custom key binding expected to work?</p>
</blockquote>

<p dir="auto">Yes, but it doesn't :-) Your observations are correct.</p>

<blockquote>
<pre><code>/* Mark all messages in Junk folder as read */
"^j" = ( "goToMailbox:", "JUNK",
         "selectWithFilter:", "#flags.flag !=[x] '\\Seen'",
         "setTag:", "\\Seen" );
</code></pre>
</blockquote>

<p dir="auto">I'll look into fixing it, but it's part of systemic bug which means I'll need to be careful not to break other things.</p>

<p dir="auto">In this particular case, it'll work in the latest test release if you do it like this:</p>

<pre><code>"^j" = ( "goToMailbox:", "JUNK",
         "mailboxSetTag:", "\\Seen" );
</code></pre>

<p dir="auto">Hmm, it is probably also going to work in the official version of MailMate if you insert this in your example before setting the tag:</p>

<pre><code>"makeFirstResponder:", "mainOutline",
</code></pre>

<hr>

<p dir="auto">Benny</p>

</div>