[plt-scheme] Key bindings

From: Javier (javuchi at gmail.com)
Date: Mon Sep 17 12:42:43 EDT 2007

Hello, I'm new to the list.
I'm using Dr Scheme to do some programing, and want to assign some  
keybindings for my spanish keyboard. That is, I want to associate the  
key " º " to the insert-()-pair function, so I do:

(module javi
   (lib "keybinding-lang.ss" "framework")

   (require (lib "tool-lib.ss" "drscheme"))

   (keybinding "º"
               (lambda (editor event)
                 (send
                  (send editor get_keymap)
                  call-function
                  "insert-()-pair"
                  editor event #t))))


But I got two errors: numer one saying that "º" is not a valid  
keybinding, and second something related with "insert-()-pair", which  
I think is not a valid funcion inside Dr Scheme itself.

Can anyone help me with this?
Is it planned for Dr Scheme to let the user configure graphically the  
keybindings in the future?

Thank you.

Posted on the users mailing list.