Open holtzermann17 opened 2 years ago
Quick work-around
(defun delete-something-here ()
(interactive)
(if (get-char-property (point) 'composition)
(delete-region (point) (1+ (point)))
(delete-forward-char 1)))
(global-set-key [delete] 'delete-something-here)
For me
<delete>
runs the commanddelete-forward-char
.Pressing it with the cursor on a bullet raises the following debugger message:
I'm on GNU Emacs 29.0.50 (build 3, x86_64-pc-linux-gnu, X toolkit, cairo version 1.16.0, Xaw3d scroll bars) of 2022-08-22.