<div class="markdown">
<p dir="auto">On 5 Jun 2014, at 17:31, Michael Sale wrote:</p>

<blockquote>
<p dir="auto">OK, so if this is the case, can anyone tell me why is my keybinding not working? Syntax issues?</p>

<p dir="auto">{<br>
// Keybindings for Mike.plist<br>
"t" = "moveToMailbox:";<br>
"@t" = "setTag:";<br>
"~@t" = "goToMailbox:";<br>
"/" = "mailboxSearch:";</p>

<p dir="auto">}</p>
</blockquote>

<p dir="auto">You should change the default tagging shortcut in the Tags preferences pane to be ⌘T (this also frees <code>t</code> to be used for custom key bindings) and you should use System Preferences to set ⌥⌘T as a shortcut for “Go to Mailbox...”.</p>

<p dir="auto">The following then seems to work for me:</p>

<pre><code>{
    "t" = "moveToMailbox:";
    "/" = "mailboxSearch:";
}
</code></pre>

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

</div>