From 9a84275f946988324192c427a3c71a2fcd257d3f Mon Sep 17 00:00:00 2001 From: Paul Date: Fri, 29 Jan 2016 13:33:25 +0000 Subject: [PATCH] automatically use external editor on fwd-as-attachment if option is set --- src/compose.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/compose.c b/src/compose.c index cb506352c..f7d18a04f 100644 --- a/src/compose.c +++ b/src/compose.c @@ -2069,6 +2069,9 @@ static Compose *compose_forward_multiple(PrefsAccount *account, GSList *msginfo_ gtk_text_buffer_get_start_iter(textbuf, &iter); gtk_text_buffer_place_cursor(textbuf, &iter); + if (prefs_common.auto_exteditor) + compose_exec_ext_editor(compose); + gtk_widget_grab_focus(compose->header_last->entry); undo_unblock(compose->undostruct); compose->modified = FALSE; -- 2.25.1