how to know if user types backspace or tab and implement changes in the editor

Answered
I have used TypedHandlerDelegate to implement changes in the editor. I want to delete those changes if backspace is typed and modify those changes in the editor if tab is typed. I used keyListener but it's not working maybe because I am using multiple listeners and TypedHandlerDelegate simultaneously? Any help would be appreciated
0
1 comment

Backspace: `com.intellij.codeInsight.editorActions.BackspaceHandlerDelegate` EP

Tab-Key: `com.intellij.openapi.editor.actionSystem.EditorActionHandler` EP

0

Please sign in to leave a comment.