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