Hello,<br><br>I'd like to have Control+Backspace remapped as backward-kill-word. Following advice found over the net, I've tried both these snippets of code, which not work:<br><br>#lang s-exp framework/keybinding-lang<br>
(keybinding "c:del" (ë (editor evt) (send editor backward-kill-word)))<br><br>#lang s-exp framework/keybinding-lang<br>
(keybinding "c:del" (lambda (editor event)<br> (send<br> (send editor get-keymap)<br> call-function<br> "backward-kill-word"<br>
editor event #t)))<br><br>Any help? Thanks.<br><br><br><br>