#[serde(alias = "mailer-command", alias = "mailer-cmd", alias = "mailer_cmd")]
pubmailer_command: String,
/// Command to launch editor. Can have arguments. Draft filename is given as the last argument. If it's missing, the environment variable $EDITOR is looked up.
#[serde(default = "none", alias = "editor-cmd")]
pubeditor_cmd: Option<String>,
#[serde(
default="none",
alias="editor-command",
alias="editor-cmd",
alias="editor_cmd"
)]
pubeditor_command: Option<String>,
/// Embed editor (for terminal interfaces) instead of forking and waiting.
@ -202,12 +202,13 @@ impl Default for ShortcutsOverride {
pubstructComposingSettingsOverride{
#[doc = " A command to pipe new emails to"]
#[doc = " Required"]
#[serde(alias = "mailer-command", alias = "mailer-cmd", alias = "mailer_cmd")]
#[serde(default)]
pubmailer_cmd: Option<String>,
pubmailer_command: Option<String>,
#[doc = " Command to launch editor. Can have arguments. Draft filename is given as the last argument. If it's missing, the environment variable $EDITOR is looked up."]
#[serde(alias = "editor-cmd")]
#[serde(alias = "editor-command", alias = "editor-cmd", alias = "editor_cmd")]
#[serde(default)]
pubeditor_cmd: Option<Option<String>>,
pubeditor_command: Option<Option<String>>,
#[doc = " Embed editor (for terminal interfaces) instead of forking and waiting."]