Re: [racket] Simple keybinding question

2011-11-20 Thread Harry Spier
Correction: (typo in the last email) On Sun, Nov 20, 2011 at 10:04 AM, Harry Spier wrote: > Dear Robby and matthew, > > Its a Dell laptop from the USA with a standard american keyboard. I'm > running Windows Vista. > > Both: > (keybinding "?:c:m:r" (λ (editor evt) (send editor insert "ṝ"))) > an

Re: [racket] Simple keybinding question

2011-11-20 Thread Harry Spier
Dear Robby and matthew, Its a Dell laptop from the USA with a standard american keyboard. I'm running Windows Vista. Both: (keybinding "?c:m:r" (λ (editor evt) (send editor insert "ṝ"))) and (keybinding "c:m:r" (λ (editor evt) (send editor insert "ṝ"))) don't output anything when I press ctrl,a

Re: [racket] Simple keybinding question

2011-11-20 Thread Matthew Flatt
Also, does changing "c:m:r" to "?:c:m:r" have any effect? The "?:" prefix means "try to match with the character that would have been produced if the AltGr key wasn't pressed", since an Ctl+Alt combination can be treated as an AltGr modifier that might produce a character other than "r" (depending

Re: [racket] Simple keybinding question

2011-11-20 Thread Robby Findler
What does it do when you type that last keybinding? Do you just see an "r" inserted? Also, just to confirm: you have an American keyboard, right? Robby On Sat, Nov 19, 2011 at 11:18 PM, Harry Spier wrote: > I want to set up some user defined keybindings to type unicode letters with > diacritical

[racket] Simple keybinding question

2011-11-19 Thread Harry Spier
I want to set up some user defined keybindings to type unicode letters with diacritical marks into DrRacket but I want to use the same keybinding system I'm used to. I'm able to set up the user defined keybindings that use only one control character. But I can't figure out how to set up keybindin