File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 44
44
45
45
(defun meow--beacon-add-overlay-at-point (pos )
46
46
" 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 )))
48
48
(overlay-put ov 'face 'meow-beacon-fake-cursor )
49
49
(overlay-put ov 'meow-beacon-type 'cursor )
50
50
(push ov meow--beacon-overlays)))
@@ -124,7 +124,7 @@ Non-nil BACKWARD means backward direction."
124
124
" Apply kmacros in BEACON state, after exiting from insert.
125
125
126
126
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."
128
128
(meow--beacon-apply-command (lambda ()
129
129
(interactive )
130
130
(meow--execute-kbd-macro
You can’t perform that action at this time.
0 commit comments