summary refs log tree commit diff stats
path: root/doc
diff options
context:
space:
mode:
authorReto Brunner <reto@labrat.space>2019-06-25 09:23:52 +0200
committerDrew DeVault <sir@cmpwn.com>2019-06-25 10:38:55 -0400
commitccf5c02c3815efbe3b2e495cbc6eaca9f017aefd (patch)
tree87322ef29bf403981d40dde34d01c029fb101fee /doc
parentee242a3d0ffc4d9cca884a2ad9047cdd16cd713e (diff)
downloadaerc-ccf5c02c3815efbe3b2e495cbc6eaca9f017aefd.tar.gz
msgview/save: Use defaultSavePath if no path is provided
Diffstat (limited to 'doc')
-rw-r--r--doc/aerc-config.5.scd7
-rw-r--r--doc/aerc.1.scd3
2 files changed, 10 insertions, 0 deletions
diff --git a/doc/aerc-config.5.scd b/doc/aerc-config.5.scd
index b5e3505..8e0e056 100644
--- a/doc/aerc-config.5.scd
+++ b/doc/aerc-config.5.scd
@@ -23,6 +23,13 @@ separated with "=".
 
 This file is used for configuring the general appearance and behavior of aerc.
 
+## GENERAL OPTIONS
+
+These options are configured in the *[general]* section of aerc.conf.
+
+*default-save-path*
+	Used as a default path for save operations if no other path is specified.
+
 ## UI OPTIONS
 
 These options are configured in the *[ui]* section of aerc.conf.
diff --git a/doc/aerc.1.scd b/doc/aerc.1.scd
index 4fdd91a..f97d01d 100644
--- a/doc/aerc.1.scd
+++ b/doc/aerc.1.scd
@@ -131,6 +131,9 @@ message list, the message in the message viewer, etc).
 *save* [-p] <path>
 	Saves the current message part to the given path.
 
+	If no path is given but general.default-save-path is set, the
+	file will be saved there.
+
 	*-p*: Make any directories in the path that do not exist
 
 *close*
9 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228