Skip to content
Snippets Groups Projects
Commit 4a61eea5 authored by Jacek Złydach's avatar Jacek Złydach
Browse files

Enabled Backspace + made Delete (Rubout) behave as it should today.

Closes issue #17.
parent 477977a9
No related branches found
No related tags found
No related merge requests found
......@@ -1335,6 +1335,14 @@ This may confused the input editor" gestures))
(:ie-scroll-left :page-up :control)
(:ie-scroll-right :page-down :control))
#+ (or Clozure sbcl)
(define-input-editor-gestures
(:ie-rubout-character :backspace)
(:ie-rubout-word :backspace :meta)
(:ie-rubout-sexp :backspace :control :meta)
(:ie-delete-character :rubout)
(:ie-delete-word :rubout :meta))
(defmacro assign-input-editor-key-bindings (&body functions-and-gestures)
(let ((forms nil))
(loop
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment