@bobfrankston/rmfmail 1.1.42 → 1.1.43

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -6149,7 +6149,7 @@ function render() {
6149
6149
  plus.title = "New tab (All Inboxes)";
6150
6150
  plus.addEventListener("click", () => openTab({ kind: "unified" }, "All Inboxes", true));
6151
6151
  stripEl.appendChild(plus);
6152
- stripEl.hidden = tabs.length < 1;
6152
+ stripEl.hidden = tabs.length < 2;
6153
6153
  }
6154
6154
  function initTabs(strip, apply) {
6155
6155
  stripEl = strip;
@@ -8257,6 +8257,10 @@ document.addEventListener("keydown", (e) => {
8257
8257
  e.preventDefault();
8258
8258
  openCompose("new");
8259
8259
  }
8260
+ if (e.ctrlKey && (e.key === "t" || e.key === "T") && !e.shiftKey && !e.altKey) {
8261
+ e.preventDefault();
8262
+ openTab({ kind: "unified" }, "All Inboxes", true);
8263
+ }
8260
8264
  if (e.ctrlKey && e.key === "r" && !e.shiftKey && !e.altKey && !e.metaKey) {
8261
8265
  e.preventDefault();
8262
8266
  openCompose("reply");