Ellipsis fix and why can’t I display habits on my phone?

This commit is contained in:
trémeur 2023-03-11 21:52:35 +00:00
parent ab6d22e4d5
commit fcc8d740ce
3 changed files with 9 additions and 7 deletions

View file

@ -120,7 +120,7 @@
(goto-char (point-min))
(re-search-forward "RECUR dw posts")
(org-shiftright)
(sleep-for 4)
(sleep-for 1)
(save-buffer))))
(unless (string-equal system-type "android")

View file

@ -15,7 +15,7 @@
(replace-match ""))
(goto-char (point-min))
(while (re-search-forward "" nil t)
(replace-match " … "))
(replace-match " …"))
(goto-char (point-min))
(while (re-search-forward "  …" nil t)
(replace-match " …"))
@ -23,6 +23,9 @@
(while (re-search-forward "  +…" nil t)
(replace-match " …"))
(goto-char (point-min))
(while (re-search-forward "\\([a-z]\\)" nil t)
(replace-match "\\1"))
(goto-char (point-min))
(while (re-search-forward "'" nil t)
(replace-match ""))
(goto-char (point-min))