branch: externals/boxy-headings commit c4c5feba832e5e3700fe679b4e5f8e0ba410a598 Author: Tyler Grinn <tylergr...@gmail.com> Commit: Tyler Grinn <tylergr...@gmail.com>
Typo in boxy rel alist --- boxy-headings.el | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/boxy-headings.el b/boxy-headings.el index 5c2adbe..f4b3bbd 100644 --- a/boxy-headings.el +++ b/boxy-headings.el @@ -131,8 +131,8 @@ ("in front of" . ("in.+front")) ("behind" . ("behind")) ("below" . ("below")) - ("to the left of" . ("to the left of")) - ("to the right of" . ("to the right of"))) + ("to the left of" . ("left")) + ("to the right of" . ("right"))) "Mapping from a boxy relationship to a list of regexes. Each regex will be tested against the REL property of each @@ -331,7 +331,6 @@ The default relationship is 'in'." (lambda (rel) (seq-some (lambda (pattern) - (message "Testing pattern %s" pattern) (string-match-p pattern heading-rel)) (alist-get rel boxy-headings-rel-alist nil nil #'equal)))