Skip to content

Commit f5ca6e7

Browse files
committed
Fix beacon change with consecutive characters
1 parent 7598b4b commit f5ca6e7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

meow-beacon.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444

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

0 commit comments

Comments
 (0)