Skip to content

Commit 6a12dc4

Browse files
committed
Fix position hint before tabs with width 2
1 parent 3247b9d commit 6a12dc4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

meow-visual.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,12 +144,12 @@ Value is a list of (last-regexp last-pos idx cnt).")
144144
(n (mod i 10)))
145145
(overlay-put ov 'window (selected-window))
146146
(cond
147-
(before-full-width-char
148-
(overlay-put ov 'display (propertize (format "%s" (meow--format-full-width-number n)) 'face face)))
149147
(before-newline
150148
(overlay-put ov 'display (concat (propertize (format "%s" n) 'face face) "\n")))
151149
(before-tab
152150
(overlay-put ov 'display (concat (propertize (format "%s" n) 'face face) "\t")))
151+
(before-full-width-char
152+
(overlay-put ov 'display (propertize (format "%s" (meow--format-full-width-number n)) 'face face)))
153153
(t
154154
(overlay-put ov 'display (propertize (format "%s" n) 'face face))))
155155
(push ov meow--expand-overlays)

0 commit comments

Comments
 (0)