emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/meow f5ca6e7417 1/2: Fix beacon change with consecutive ch


From: ELPA Syncer
Subject: [nongnu] elpa/meow f5ca6e7417 1/2: Fix beacon change with consecutive characters
Date: Tue, 30 Jan 2024 07:00:44 -0500 (EST)

branch: elpa/meow
commit f5ca6e7417701e4016215a101283b43c1875d035
Author: DogLooksGood <doglooksgood@hotmail.com>
Commit: DogLooksGood <doglooksgood@hotmail.com>

    Fix beacon change with consecutive characters
---
 meow-beacon.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meow-beacon.el b/meow-beacon.el
index b415ff8f48..d11cdb1c2a 100644
--- a/meow-beacon.el
+++ b/meow-beacon.el
@@ -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)))
@@ -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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]