<div>Robby,</div><div><br></div><div>OK, I reduced my keybindings.rkt file to exactly the below.</div><div><br></div><div>#lang s-exp framework/keybinding-lang</div><div>;; insert ë</div><div><div>(keybinding &quot;c:\\&quot; (ë (editor evt) </div>
<div><span class="Apple-tab-span" style="white-space:pre">                </span>      (pretty-print editor) </div><div><span class="Apple-tab-span" style="white-space:pre">                </span>      (send editor insert &quot;ë&quot;)))</div></div>
<div><br></div><div>When I run drracket from the command line what I see printed is</div><div><div><br></div><div>ray@rpr:~$ /usr/local/racket/bin/drracket </div><div>#(struct:object:...cts/version/tool.rkt:176:9 ...)</div>
</div><div><br></div><div>This matches the popup box error as well.  Screenshot is here.</div><div><a href="https://plus.google.com/u/0/photos/108838931798929528241/albums/5804161505516624049">https://plus.google.com/u/0/photos/108838931798929528241/albums/5804161505516624049</a></div>
<div><br></div><div>So it doesn&#39;t appear to be an instance of editor% but I don&#39;t know why.  I&#39;m running Linux Ubuntu 12.10.  It happens in #lang racket. </div><div><br></div><div>Ray</div><br><div class="gmail_quote">
On Sat, Oct 27, 2012 at 8:12 PM, Robby Findler <span dir="ltr">&lt;<a href="mailto:robby@eecs.northwestern.edu">robby@eecs.northwestern.edu</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
I&#39;ve tried this and I see a lambda char inserted.<br>
<br>
Is it possible that the keyboard focus is not in an editor? That would<br>
mean that the &#39;editor&#39; argument wouldn&#39;t actually be an editor.<br>
<br>
Maybe try printing that out, and that&#39;ll shed some light on what&#39;s<br>
going on here.<br>
<span class="HOEnZb"><font color="#888888"><br>
Robby<br>
</font></span><div class="HOEnZb"><div class="h5"><br>
On Sat, Oct 27, 2012 at 12:37 PM, Ray Racine &lt;<a href="mailto:ray.racine@gmail.com">ray.racine@gmail.com</a>&gt; wrote:<br>
&gt; I spoke to soon there still is something broken.  But I did find a work<br>
&gt; around.<br>
&gt;<br>
&gt; To reproduce:<br>
&gt;<br>
&gt; 1) Create a custom keybinding file.<br>
&gt; 2) Use emacs keybindings by unchecking Enable Menu Keybindings  in your<br>
&gt; Preferences (as in section 3.3 of the Racket doc)<br>
&gt; 3) Define a simple one-line keybinding in the keybinding file.<br>
&gt;   (keybinding &quot;c:\\&quot; (ë (editor evt) (send editor insert &quot;ë&quot;)))<br>
&gt; 4) Set the keybinding file and attempt to do a ctr-\ and you see the error.<br>
&gt;<br>
&gt; The workaround I have is to use &quot;menu-bind&quot; method in your keybindings file.<br>
&gt; When I use that to bind to the &quot;Insert ë&quot; menu option, it works.<br>
&gt;<br>
&gt; Ray<br>
&gt;<br>
&gt; On Sat, Oct 27, 2012 at 10:21 AM, Robby Findler<br>
&gt; &lt;<a href="mailto:robby@eecs.northwestern.edu">robby@eecs.northwestern.edu</a>&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt; Sorry-- I had this on my list of things to look into (but it sounds<br>
&gt;&gt; like I was missing a piece anyways). If you saved a copy of that<br>
&gt;&gt; directory and don&#39;t mind sharing it, I&#39;d be happy to try to look into<br>
&gt;&gt; it more.<br>
&gt;&gt;<br>
&gt;&gt; Robby<br>
&gt;&gt;<br>
&gt;&gt; On Sat, Oct 27, 2012 at 9:14 AM, Ray Racine &lt;<a href="mailto:ray.racine@gmail.com">ray.racine@gmail.com</a>&gt; wrote:<br>
&gt;&gt; &gt; OK, sat down this morning to figure out why my custom Racket keybinding<br>
&gt;&gt; &gt; were<br>
&gt;&gt; &gt; failing.  No idea of the exact cause, but step 1, clearing out my<br>
&gt;&gt; &gt; .racket/preferences brought them back.  Working fine now.<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; Ray<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; On Tue, Oct 23, 2012 at 11:15 AM, Ray Racine &lt;<a href="mailto:ray.racine@gmail.com">ray.racine@gmail.com</a>&gt;<br>
&gt;&gt; &gt; wrote:<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; Up until recently the following worked for me.  Create a custom<br>
&gt;&gt; &gt;&gt; keybindings file.  Add the following line.<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; (keybinding &quot;c:\\&quot; (ë (editor evt) (send editor insert &quot;ë&quot;)))<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; And a Ctrl:\ would insert a ë for me.  Recently this has stopped<br>
&gt;&gt; &gt;&gt; working<br>
&gt;&gt; &gt;&gt; as reported below.  Any ideas on how to bring it back?<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; Thanks,<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; Ray<br>
&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt; The key binding is invoked, however, I&#39;m seeing the following in a<br>
&gt;&gt; &gt;&gt;&gt; pop-up.<br>
&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt; Error running keybinding<br>
&gt;&gt; &gt;&gt;&gt; send: no such method<br>
&gt;&gt; &gt;&gt;&gt; method name: insert<br>
&gt;&gt; &gt;&gt;&gt; class name: cts/version/tool.rkt:176:9<br>
&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; ____________________<br>
&gt;&gt; &gt;   Racket Users list:<br>
&gt;&gt; &gt;   <a href="http://lists.racket-lang.org/users">http://lists.racket-lang.org/users</a><br>
&gt;&gt; &gt;<br>
&gt;<br>
&gt;<br>
</div></div></blockquote></div><br>