<div class="markdown">
<p dir="auto">Benny has already added a bunch of keybindings, such as selectNextMessageRow and selectNextMailboxRow but I don't think the ones we're looking for (top of message list) exist yet. I think we want something like:</p>

<pre><code>"G" = "selectFirstMailboxRow:";
"gg" = "selectLastMailboxRow:";
" " = "selectNextMailboxPage:"; (space)
</code></pre>

<p dir="auto">Here is what I've got so far that creates a pretty nice, vi like experience.</p>

<pre><code>"/"    = "mailboxSearch:";

"J" = "selectNextMailboxRow:";
"K" = "selectPreviousMailboxRow:";
"j" = "selectNextMessageRow:";
"k" = "selectPreviousMessageRow:";

"l" = "expandThread:"; // →
"h" = "collapseThread:"; // ←
"L" = "expandAll:";
"H" = "collapseAll:";
</code></pre>

<p dir="auto">--<br>
Ryan in Shanghai<br>
<a href="mailto:ryanerwin@mac.com">ryanerwin@mac.com</a></p>

<p dir="auto">On 13 Sep 2013, at 4:46, Steve Mayer wrote:</p>

<blockquote>
<p dir="auto">Anyone know of a keybinding that will take me to the top of the message list?  scrollPageUp: and scrollPageDown: only seem to function in a message viewer window.</p>

<p dir="auto">Thanks,</p>

<p dir="auto">-- <br>
Steve Mayer<br>
<a href="mailto:smayer69@me.com">smayer69@me.com</a></p>
</blockquote>

</div>