From 132ebae3fd9f132e3918efb51faa31717fd04268 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Fri, 4 Nov 2016 19:48:21 +0100 Subject: Add nick regain formatter --- circe-serenity.el | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'circe-serenity.el') diff --git a/circe-serenity.el b/circe-serenity.el index ee8afbb..bc1c26b 100644 --- a/circe-serenity.el +++ b/circe-serenity.el @@ -187,6 +187,20 @@ key. A key :intro is added to the plist and then passed on to 'wrap-prefix (circe-serenity--fill-string))) (circe-serenity--define-formatter 'circe-serenity-server-topic-formatter 'circe-format-server-topic) +(defun circe-serenity-server-nick-regain-formatter (&rest keywords) + "Format a message of user regaining their nick. +KEYWORDS should be a plist with at least a :new-nick and +:old-nick key. A key :intro is added to the plist and then +passed on to `lui-format'." + (propertize + (lui-format + (format "{intro:%ds} {old-nick} is known again as {new-nick}" + circe-serenity-longest-nick) + (plist-put keywords :intro "***")) + 'wrap-prefix (circe-serenity--fill-string))) +(circe-serenity--define-formatter 'circe-serenity-server-nick-regain-formatter + 'circe-format-server-nick-regain) + ;;;###autoload (defun enable-circe-serenity () "Enable Serenity for Circe." -- cgit v1.2.3-54-g00ecf