I&#39;m attempting this weekend to make the leap from my beloved Emacs and Geiser to DrRacket.    Was wondering if anyone has a cool set of custom keybindings they&#39;d like to share.  <div><br></div><div>Some I&#39;d like to get my hands on are:<div>
1. binding for reindent / reindent all.</div><div>2. binding for Check Syntax button equivalent.</div><div>3. binding for Run button equivalent.</div><div><br></div><div>Three below I just pieced together.</div><div><br></div>
<div><div>;; insert λ</div><div>(keybinding &quot;c:\\&quot; (λ (editor evt) (send editor insert &quot;λ&quot;)))</div><div><br></div><div>;; close</div><div>(keybinding &quot;c:q&quot; (λ (editor evt) </div><div>                    (send (send editor get-top-level-window) close-current-tab)))</div>
<div><br></div><div>;; open a new tab</div><div>(keybinding &quot;c:t&quot; (λ (editor evt) (send (send editor get-top-level-window) create-new-tab))</div></div></div>