diff options
Diffstat (limited to 'config')
-rw-r--r-- | config/aerc.conf | 10 | ||||
-rw-r--r-- | config/compose.go | 1 |
2 files changed, 11 insertions, 0 deletions
diff --git a/config/aerc.conf b/config/aerc.conf index d6ffa389..d195563b 100644 --- a/config/aerc.conf +++ b/config/aerc.conf @@ -390,6 +390,16 @@ #header-layout=To|From,Subject # +# Edit headers into the text editor instead than separate fields. +# +# When this is true, address-book-cmd is not supported and address completion +# is left to the editor itself. Also, displaying multiple headers on the same +# line is not possible. +# +# Default: false +#edit-headers=false + +# # Specifies the command to be used to tab-complete email addresses. Any # occurrence of "%s" in the address-book-cmd will be replaced with what the # user has typed so far. diff --git a/config/compose.go b/config/compose.go index 4b92bddc..37e46f96 100644 --- a/config/compose.go +++ b/config/compose.go @@ -16,6 +16,7 @@ type ComposeConfig struct { EmptySubjectWarning bool `ini:"empty-subject-warning"` FilePickerCmd string `ini:"file-picker-cmd"` FormatFlowed bool `ini:"format-flowed"` + EditHeaders bool `ini:"edit-headers"` } var Compose = new(ComposeConfig) |