From 8226df7623a4697ec85d92bd0d508ad4c1bb4a0d Mon Sep 17 00:00:00 2001 From: marty hiatt Date: Thu, 15 Aug 2024 21:13:07 +0200 Subject: filter kw table: en dashes if possible --- lisp/mastodon-views.el | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lisp/mastodon-views.el b/lisp/mastodon-views.el index 608d13f..411d2d2 100644 --- a/lisp/mastodon-views.el +++ b/lisp/mastodon-views.el @@ -600,6 +600,9 @@ JSON is the filters data." "Insert filter keywords KWS." (insert "\n\n") (let ((beg (point)) + (table-cell-horizontal-chars (if (char-displayable-p ?–) ; ?– ?-) + "–" + "-")) (whole-str "whole-words-only:")) (insert (concat "Terms: | " whole-str "\n")) (mapc (lambda (kw) -- cgit v1.2.3