Hi!

One of the most important Thunderbird features was missing from Muttator default key mapping - Junk handling. :-)

Thinking about a key which doesn't conflict too much with default vim or other key bindings, I ended up with "!" - resembling the nice tradition of exclamation marks in spam messages ("Get the biggest one now!!!").

--
Gernot Hillier

Siemens AG, CT T DE IT 1, Corporate Competence Center Embedded Linux
diff -r e20f6a72989b muttator/content/mail.js
--- a/muttator/content/mail.js	Thu Mar 04 17:26:38 2010 +0100
+++ b/muttator/content/mail.js	Fri Mar 05 10:57:15 2010 +0100
@@ -670,6 +670,10 @@
         mappings.add(myModes, ["<C-s>"],
             "Archive message",
             function () { this._moveOrCopy(false, options["archivefolder"]); });
+	
+        mappings.add(myModes, ["!"],
+            "Mark/Unmark message as junk",
+            function () { JunkSelectedMessages(!SelectedMessagesAreJunk()); });
 
         mappings.add(myModes, ["]s"],
             "Select next starred message",
_______________________________________________
Muttator mailing list
[email protected]
https://www.mozdev.org/mailman/listinfo/muttator

Reply via email to