Imprime a variável 'from' no status_format do mutt

1

Eu mantenho várias contas em mutt por meio do fornecimento de arquivos da conta em certos atalhos de teclado.

Cada conta, como parte de sua configuração, define set from = "[email protected]" .

Existe uma maneira de imprimir o valor atual dessa variável em status_format , a fim de saber com facilidade qual conta eu estou usando atualmente?

Eu tenho andado a folhear muttrc man page que mostra as seguintes sequências, mas nenhuma parece fazer o que eu preciso:

          %b     number of mailboxes with new mail *
          %d     number of deleted messages *
          %f     the full pathname of the current mailbox
          %F     number of flagged messages *
          %h     local hostname
          %l     size (in bytes) of the current mailbox *
          %L     size (in bytes) of the messages shown (i.e., which match the current limit) *
          %m     the number of messages in the mailbox *
          %M     the number of messages shown (i.e., which match the current limit) *
          %n     number of new messages in the mailbox *
          %o     number of old unread messages *
          %p     number of postponed messages *
          %P     percentage of the way through the index
          %r     modified/read-only/won't-write/attach-message indicator, according to $status_chars
          %s     current sorting mode ($sort)
          %S     current aux sorting method ($sort_aux)
          %t     number of tagged messages *
          %u     number of unread messages *
          %v     Mutt version string
          %V     currently active limit pattern, if any *
          %>X    right justify the rest of the string and pad with "X"
          %|X    pad to the end of the line with "X"
          %*X    soft-fill with character "X" as pad
    
por jviotti 04.01.2016 / 17:54

1 resposta

0

Basta incluir a variável que você deseja ver na barra de status em status_format . Por exemplo:

  set status_format = "───[ Folder: %f ]───[%r%m messages%?n? (%n new)?%?d? (%d to delete)?%?t? (%t tagged)? ]───%>─%?p?( %p postponed )?─── $my_akr ───"

$my_akr é uma variável que defini para cada conta de maneira diferente, então eu sei qual conta eu estou usando. No seu caso, você pode substituí-lo por $from e o conteúdo da variável from será exibido na barra de status.

    
por 20.05.2016 / 17:05

Tags