Merge pull request #1243 from avar/render-urls-with-space-before-number

mu4e: view: render URLs as "<url> [%d]" not "<url>[%d]"
This commit is contained in:
Dirk-Jan C. Binnema 2018-06-12 09:23:14 +03:00 committed by GitHub
commit 4fb5d11d9f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -976,7 +976,7 @@ Also number them so they can be opened using `mu4e-view-go-to-url'."
help-echo
"[mouse-1] or [M-RET] to open the link"))
(overlay-put ov 'after-string
(propertize (format "[%d]" num)
(propertize (format "\u200B[%d]" num)
'face 'mu4e-url-number-face)))))))))