From 6a5981d19a1ad01355c79e0e77c36a97132bcffd Mon Sep 17 00:00:00 2001 From: tastytea Date: Sun, 14 Mar 2021 19:36:40 +0100 Subject: [PATCH] Re-order suggestions in (my/html-surround-with-tag ()). --- init.d/text/web.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.d/text/web.el b/init.d/text/web.el index be573e4..639b6e2 100644 --- a/init.d/text/web.el +++ b/init.d/text/web.el @@ -21,7 +21,7 @@ (interactive "*r") (if (region-active-p) (let ((tag (completing-read "Tag: " - '("em" "strong" "blockquote")))) + '("blockquote" "em" "strong")))) (insert (concat "<" tag ">" (delete-and-extract-region beg end) "")))