Display the shortcut for “Find in thread” and use F4/Ctrl-Shift-F in Outlook config #1372

This commit is contained in:
Ben Gotow 2019-03-16 13:54:01 -07:00
parent 8208850439
commit 22795bed77
6 changed files with 17 additions and 6 deletions

View file

@ -58,6 +58,7 @@ export default [
['core:focus-item', localized('Open selected conversation')],
['core:previous-item', localized('Move to newer conversation')],
['core:next-item', localized('Move to older conversation')],
['core:find-in-thread', localized('Find in thread')],
],
},
{

View file

@ -42,10 +42,6 @@
"window:select-account-7": "mod+8",
"window:select-account-8": "mod+9",
"core:find-in-thread": "mod+f",
"core:find-in-thread-next": "mod+g",
"core:find-in-thread-previous": "mod+shift+g",
"contenteditable:underline": "mod+u",
"contenteditable:bold": "mod+b",
"contenteditable:italic": "mod+i",

View file

@ -12,6 +12,10 @@
"multiselect-list:select-all": "command+a",
"core:find-in-thread": "mod+f",
"core:find-in-thread-next": "mod+g",
"core:find-in-thread-previous": "mod+shift+g",
"core:previous-item": "command+[",
"core:select-up": "shift+command+[",
"core:next-item": "command+]",

View file

@ -16,6 +16,10 @@
"thread-list:select-starred": "* s",
"thread-list:select-unstarred": "* t",
"core:find-in-thread": "mod+f",
"core:find-in-thread-next": "mod+g",
"core:find-in-thread-previous": "mod+shift+g",
"core:pop-sheet": "u",
"core:previous-item": "k",
"core:select-up": "shift+k",

View file

@ -14,6 +14,10 @@
"message-list:previous-message": "p",
"message-list:next-message": "n",
"core:find-in-thread": "mod+f",
"core:find-in-thread-next": "mod+g",
"core:find-in-thread-previous": "mod+shift+g",
"core:mute-conversation": "m",
"core:focus-search": "/",
"core:change-category": ".",

View file

@ -8,9 +8,11 @@
"core:reply": "mod+r",
"core:reply-all": "mod+shift+r",
"application:new-message": ["mod+n", "mod+shift+m"],
"core:find-in-thread": "f4",
"core:find-in-thread": ["mod+shift+f", "f4"],
"core:find-in-thread-next": "shift+f4",
"core:find-in-thread-previous": "ctrl+shift+f4",
"core:find-in-thread-previous": "mod+shift+f4",
"core:focus-item": "ctrl+o",
"core:mark-as-read": "ctrl+q",
"core:mark-as-unread": "ctrl+u",