Handling character deletion

There is a BackspaceHandlerDelegate, but how to handle using Del key? Doing pretty same thing, but I can't see EP for it and no BackSpace nor TypedHandler handles it. 

0

I do both of these using EditorActionHandlers:

    <editorActionHandler action="EditorBackSpace"
                         implementationClass="cursive.editor.ClojureBackspaceHandler"
                         order="first"/>
    <editorActionHandler action="EditorDelete"
                         implementationClass="cursive.editor.ClojureDeleteHandler"
                         order="first"/>

2

请先登录再写评论。