emacs-circe / circe

Circe, a Client for IRC in Emacs
GNU General Public License v3.0
395 stars 51 forks source link

Alignment of multiline message (to the first line) #366

Closed douglasdavis closed 4 years ago

douglasdavis commented 4 years ago

I'd like to have messages align to look something like this:

       buzz > tiny message
 longernick > this is a nice long message that will have to
              include a new line.
        bar > here is a short message.

I can get the nick alignment correct with proper formatting;

(setq circe-format-say "{nick:11s} > {body}")

but I can't figure out how to get the additional lines of the body to align with the first line (result below). Is this possible with circe/lui?

       buzz > tiny message
 longernick > this is a nice long message that will have to
    include a new line.
        bar > here is a short message.
douglasdavis commented 4 years ago

Sorry for the noise, found the lui-fill-type variable.