help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Aligning code without breaking strings?


From: Raffaele Ricciardi
Subject: Aligning code without breaking strings?
Date: Wed, 15 Aug 2012 12:53:50 +0100
User-agent: Mozilla/5.0 (X11; Linux i686; rv:14.0) Gecko/20120713 Thunderbird/14.0

acceptable.
Hello,

how can you align space-separated sequences of characters in source code,
without breaking strings?

For instance, this code:

(autoload #'command "library" "A command." t)
(autoload #'another-command "library" "Another Command" t)

Should be aligned as:

(autoload #'command         "library" "A command."       t)
(autoload #'another-command "library" "Another command." t)

Instead of:

(autoload #'command         "library" "A       command." t)
(autoload #'another-command "library" "Another command." t)

Handling of escaped quotes inside strings would be a plus.

Thank you.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]