[plt-scheme] Keybinding question

From: Robby Findler (robby at eecs.northwestern.edu)
Date: Fri Jan 16 14:38:29 EST 2009

Yes, unfotunately, DrScheme doesn't do a good job of removing and
re-adding keybindings when you change the file. Best to just restart
Drscheme. I've added a note about this to the docs.

Thanks,
Robby

On Fri, Jan 16, 2009 at 1:24 PM, Grant Rettke <grettke at acm.org> wrote:
> Hi Dave,
>
>> I'm trying to set up an alternative keybinding for the "collapse-space"
>
> I tried you code and it didn't work as you wanted, but I widdled it
> down to this:
>
> (module dave-keys (lib "keybinding-lang.ss" "framework")
>
>  (define (test editor event)
>    (send (send editor get-keymap) call-function "collapse-space"
> editor event #t))
>
>  (keybinding ":f2" test))
>
> and found that it did work on 4.1.2.
>
> I did try setting try-chain? to #f to check if any exceptions were
> thrown, and in the process found that DrScheme responds better to
> changes in the keymap by restarting completely rather than just adding
> and removing the keymap after each change. That sounds like what you
> experienced.
> _________________________________________________
>  For list-related administrative tasks:
>  http://list.cs.brown.edu/mailman/listinfo/plt-scheme
>
>


Posted on the users mailing list.