Skip to content

Commit

Permalink
Merge pull request #1731 from RobertIsmo/main
Browse files Browse the repository at this point in the history
removed C-i and C-m conversion from parse-keyspec
  • Loading branch information
cxxxr authored Jan 4, 2025
2 parents 1b40b1e + efbd57a commit 798d1fd
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/keymap.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -132,12 +132,6 @@ Example: (undefine-key *paredit-mode-keymap* \"C-k\")"
(not (named-key-sym-p str)))
(fail))
(t
(cond ((and ctrl (string= str "i"))
(setf ctrl nil
str "Tab"))
((and ctrl (string= str "m"))
(setf ctrl nil
str "Return")))
(return (make-key :ctrl ctrl
:meta meta
:super super
Expand Down

0 comments on commit 798d1fd

Please sign in to comment.