unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
* custom-save-variables: pretty-printing long values
@ 2013-04-11 15:51 Adam Spiers
  2013-04-11 16:15 ` Stefan Monnier
  0 siblings, 1 reply; 3+ messages in thread
From: Adam Spiers @ 2013-04-11 15:51 UTC (permalink / raw)
  To: emacs-devel mailing list

This simple tweak to cus-edit ensures that custom variable values
which are over 60 bytes long get written to `custom-file' using
`indent-pp-sexp'.  For example:

    (custom-set-variables
     ;; custom-set-variables was added by Custom.
     ;; If you edit it by hand, you could mess it up, so be careful.
     ;; Your init file should contain only one such instance.
     ;; If there is more than one, they won't work right.
[snipped]
     '(c-default-style
       (quote
        ((c-mode . "linux")
         (java-mode . "java")
         (awk-mode . "awk")
         (other . "gnu"))))

This not only makes the file much easier to read, but is particularly
useful when the file is tracked by a version control system, since
then the diffs become much more manageable.  For example, my setting
for `org-agenda-custom-commands' is 349 lines long (14989 characters).
When I recustomise that variable, the output of `git diff' is
almost completely illegible.

Are there any problems with this approach?  

Thanks!
Adam


diff --git a/lisp/cus-edit.el b/lisp/cus-edit.el
index 4ed72be..673ea44 100644
--- a/lisp/cus-edit.el
+++ b/lisp/cus-edit.el
@@ -4590,7 +4590,15 @@ This function does not save the buffer."
 	    (princ " '(")
 	    (prin1 symbol)
 	    (princ " ")
-	    (prin1 (car value))
+	    (let ((val (prin1-to-string (car value))))
+	      (if (< (length val) 60)
+		  (insert val)
+		(newline-and-indent)
+		(let ((beginning-of-val (point)))
+		  (insert val)
+		  (save-excursion
+		    (goto-char beginning-of-val)
+		    (indent-pp-sexp 1)))))
 	    (when (or now requests comment)
 	      (princ " ")
 	      (prin1 now)



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

* Re: custom-save-variables: pretty-printing long values
  2013-04-11 15:51 custom-save-variables: pretty-printing long values Adam Spiers
@ 2013-04-11 16:15 ` Stefan Monnier
  2013-04-11 19:07   ` Adam Spiers
  0 siblings, 1 reply; 3+ messages in thread
From: Stefan Monnier @ 2013-04-11 16:15 UTC (permalink / raw)
  To: Adam Spiers; +Cc: emacs-devel mailing list

> This simple tweak to cus-edit ensures that custom variable values
> which are over 60 bytes long get written to `custom-file' using
> `indent-pp-sexp'.  For example:

Looks like a good idea.


        Stefan



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

* Re: custom-save-variables: pretty-printing long values
  2013-04-11 16:15 ` Stefan Monnier
@ 2013-04-11 19:07   ` Adam Spiers
  0 siblings, 0 replies; 3+ messages in thread
From: Adam Spiers @ 2013-04-11 19:07 UTC (permalink / raw)
  To: emacs-devel mailing list

On Thu, Apr 11, 2013 at 12:15:15PM -0400, Stefan Monnier wrote:
> > This simple tweak to cus-edit ensures that custom variable values
> > which are over 60 bytes long get written to `custom-file' using
> > `indent-pp-sexp'.  For example:
> 
> Looks like a good idea.

Thanks - I'll rebase on latest git master and resubmit to
bug-gnu-emacs.



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

end of thread, other threads:[~2013-04-11 19:07 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-04-11 15:51 custom-save-variables: pretty-printing long values Adam Spiers
2013-04-11 16:15 ` Stefan Monnier
2013-04-11 19:07   ` Adam Spiers

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).