Skip to content

Commit

Permalink
Fix beacon change with consecutive characters
Browse files Browse the repository at this point in the history
  • Loading branch information
DogLooksGood committed Jan 30, 2024
1 parent 7598b4b commit f5ca6e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions meow-beacon.el
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@

(defun meow--beacon-add-overlay-at-point (pos)
"Create an overlay to draw a fake cursor as beacon at POS."
(let ((ov (make-overlay pos (1+ pos))))
(let ((ov (make-overlay pos (1+ pos) nil t)))
(overlay-put ov 'face 'meow-beacon-fake-cursor)
(overlay-put ov 'meow-beacon-type 'cursor)
(push ov meow--beacon-overlays)))
Expand Down Expand Up @@ -124,7 +124,7 @@ Non-nil BACKWARD means backward direction."
"Apply kmacros in BEACON state, after exiting from insert.
This is treated separately because we must enter each insert state the
same way, and escape ecah time the macro is applied."
same way, and escape each time the macro is applied."
(meow--beacon-apply-command (lambda ()
(interactive)
(meow--execute-kbd-macro
Expand Down

0 comments on commit f5ca6e7

Please sign in to comment.