unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
* bug#45809: 28.0.50; [PATCH] Add option remember-text-format-function
@ 2021-01-12  3:53 Gabriel do Nascimento Ribeiro
  2021-01-20 16:53 ` Lars Ingebrigtsen
  0 siblings, 1 reply; 2+ messages in thread
From: Gabriel do Nascimento Ribeiro @ 2021-01-12  3:53 UTC (permalink / raw)
  To: 45809

[-- Attachment #1: Type: text/plain, Size: 80 bytes --]

Add option to configure a custom format of text being remembered in
remember.el

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-Add-option-remember-text-format-function.patch --]
[-- Type: text/x-diff, Size: 1831 bytes --]

From 436ed1be3a5a44c712468dc98ab222679d3be7ba Mon Sep 17 00:00:00 2001
From: Gabriel do Nascimento Ribeiro <gabriel.nascimento@nubank.com.br>
Date: Tue, 12 Jan 2021 00:50:05 -0300
Subject: [PATCH] Add option remember-text-format-function

---
 lisp/textmodes/remember.el | 17 ++++++++++++++---
 1 file changed, 14 insertions(+), 3 deletions(-)

diff --git a/lisp/textmodes/remember.el b/lisp/textmodes/remember.el
index 98d3a3856e..0b6baba62c 100644
--- a/lisp/textmodes/remember.el
+++ b/lisp/textmodes/remember.el
@@ -410,13 +410,24 @@ remember-time-format
   :group 'remember
   :version "27.1")
 
+(defcustom remember-text-format-function nil
+  "The function to format the remembered text.
+The function receives the remembered text as argument and should
+return the text to be remembered."
+  :type 'function
+  :group 'remember
+  :version "28.1")
+
 (defun remember-append-to-file ()
   "Remember, with description DESC, the given TEXT."
   (let* ((text (buffer-string))
          (desc (remember-buffer-desc))
-         (remember-text (concat "\n" remember-leader-text
-                                (format-time-string remember-time-format)
-                                " (" desc ")\n\n" text
+         (remember-text (concat "\n"
+                                (if remember-text-format-function
+                                    (funcall remember-text-format-function text)
+                                  (concat remember-leader-text
+                                          (format-time-string remember-time-format)
+                                          " (" desc ")\n\n" text))
                                 (save-excursion (goto-char (point-max))
                                                 (if (bolp) nil "\n"))))
          (buf (find-buffer-visiting remember-data-file)))
-- 
2.27.0


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* bug#45809: 28.0.50; [PATCH] Add option remember-text-format-function
  2021-01-12  3:53 bug#45809: 28.0.50; [PATCH] Add option remember-text-format-function Gabriel do Nascimento Ribeiro
@ 2021-01-20 16:53 ` Lars Ingebrigtsen
  0 siblings, 0 replies; 2+ messages in thread
From: Lars Ingebrigtsen @ 2021-01-20 16:53 UTC (permalink / raw)
  To: Gabriel do Nascimento Ribeiro; +Cc: 45809

Gabriel do Nascimento Ribeiro <gabriel376@hotmail.com> writes:

> Add option to configure a custom format of text being remembered in
> remember.el

Thanks; applied to Emacs 28.

-- 
(domestic pets only, the antidote for overdose, milk.)
   bloggy blog: http://lars.ingebrigtsen.no





^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2021-01-20 16:53 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-01-12  3:53 bug#45809: 28.0.50; [PATCH] Add option remember-text-format-function Gabriel do Nascimento Ribeiro
2021-01-20 16:53 ` Lars Ingebrigtsen

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).