1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-03 07:14:13 +01:00

Add support to change the archive folder name in muttator

This commit is contained in:
Daniel Bainton
2008-12-09 15:14:56 +02:00
parent b9b794eaa3
commit 8a7fcf21a4

View File

@@ -202,6 +202,10 @@ function Mail() //{{{
// "Set the external text editor",
// "string", "gvim -f");
options.add(["archivefolder"],
"Set the archive folder",
"string", "Archive");
options.add(["layout"],
"Set the layout of the mail window",
"string", "inherit",
@@ -430,7 +434,7 @@ function Mail() //{{{
mappings.add(myModes, ["<C-s>"],
"Archive message",
function () { moveOrCopy(false, "Archive"); });
function () { moveOrCopy(false, options["archivefolder"]); });
mappings.add(myModes, ["]s"],
"Select next starred message",