diff options
author | marty hiatt <martianhiatus@riseup.net> | 2024-08-18 11:52:17 +0200 |
---|---|---|
committer | marty hiatt <martianhiatus@riseup.net> | 2024-08-18 11:52:17 +0200 |
commit | 8b82c650c5ec3286aa05b3a04d8ae09350c9d26e (patch) | |
tree | fc65f9743efa8a80223c239e26d71c3f15d60a94 /lisp/mastodon-views.el | |
parent | 1cd94d7ee146b14c8fc97420ff57aa2205bc2e58 (diff) |
filters binding string / newlines
Diffstat (limited to 'lisp/mastodon-views.el')
-rw-r--r-- | lisp/mastodon-views.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/mastodon-views.el b/lisp/mastodon-views.el index f033d3c..c3c372d 100644 --- a/lisp/mastodon-views.el +++ b/lisp/mastodon-views.el @@ -589,8 +589,8 @@ NO-CONFIRM means there is no ask or message, there is only do." 'mastodon-views--insert-filters nil nil nil "current filters" - "c - create filter | d/k - delete filter at point\n\ - u - update filter\n a/r/U - add/remove/Update filter keyword\n + "c/u - create/update filter | d/k - delete filter\ + at point\n a/r/U - add/remove/Update filter keyword\n\ n/p - next/prev filter" "v2") (with-current-buffer "*mastodon-filters*" (use-local-map mastodon-views--view-filters-keymap))) @@ -604,7 +604,7 @@ JSON is the filters data." (defun mastodon-views--insert-filter-kws (kws) "Insert filter keywords KWS." - (insert "\n\n") + (insert "\n") (let ((beg (point)) (table-cell-horizontal-chars (if (char-displayable-p ?–) ; ?– ?-) "–" |