-
Notifications
You must be signed in to change notification settings - Fork 10
/
gmail.plist
97 lines (88 loc) · 3.48 KB
/
gmail.plist
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
/*
* Gmail defaults for MailMate
*
* Based on: http://mail.google.com/support/bin/answer.py?answer=6594
*/
/*
* | Keybindings |
* | Shortcut | Code | Description |
* | -------- | ---- | ----------- |
* | a | a | - |
* | ⌃ a | ^a | Control-a |
* | ⌥ a | ~a | Option-a |
* | ⇧ a | A | Shift-a |
* | ⌘ a | @a | Command-a |
*/
/* Single-Keys */
"c" = "newMessage:";
/* TODO: d = Compose in new tab */
/* "/" = "mailboxSearch:"; */ /* Alternative to just search the current mailbox. */
"/" = "searchAllMessages:";
"k" = "previousThread:";
"j" = "nextThread:";
"p" = "previousMessage:";
"n" = "nextMessage:";
"~" = "selectPreviousMailboxRow:";
"`" = "selectNextMailboxRow:";
"o" = "openMessages:";
"u" = ( "goToMailbox:", "INBOX" );
"e" = "archive:";
"m" = "markAsMuted:";
/* TODO: x = Select conversation */
"s" = "toggleFlag:";
/* TODO: + = Mark as important */
/* TODO: - = Mark as unimportant */
"!" = "moveToJunk:";
"r" = "reply:";
/* "R" = "reply:"; [> In Gmail, ⇧R will reply in a new window. Kept for consistency. <] */
"a" = "replyAll:";
/* "A" = "replyAll:"; [> In Gmail, ⇧A will reply all in a new window. Kept for consistency. <] */
"f" = "forwardMessage:";
/* "F" = "forwardMessage:"; [> In Gmail, ⇧F will forward in a new window. Kept for consistency. <] */
/* ⎋ = escape from the input field; native in MailMate */
"@s" = "saveDocument:";
"#" = "deleteMessage:";
/* l = open the tag editor; t is native in MailMate but to change this you must enable a hidden preference pane. See the README for more info. */
"v" = "moveToMailbox:";
"I" = ( "markAsRead:", "nextMessage:" );
"U" = "markAsUnRead:";
/* TODO: [ = remove from current view and go to previous */
/* TODO: ] = remove from current view and go to next */
/* TODO: { = archive and go to previous */
/* TODO: } = archive and go to next */
"z" = "undo:";
/* ⇧N = update current conversation. i.e., synchronize mailboxes */
/* "y" = "archive:"; */
/* y should: archive from inbox, unflag from flagged, move to inbox from trash, remove label from any label but this is not feasible in MailMate. */
/*
* Combo keys
*/
"g" = {
"a" = ( "goToMailbox:", "ALL_MESSAGES" );
"s" = ( "goToMailbox:", "FLAGGED" );
/* TODO: g then c = Go to 'Contacts' takes you to your Contacts list. */
"d" = ( "goToMailbox:", "DRAFTS" );
"l" = "goToMailbox:";
"i" = ( "goToMailbox:", "INBOX" );
"t" = ( "goToMailbox:", "SENT" );
};
"*" = {
"a" = "selectAll:"; /* Selects all */
"n" = "deselectAll:"; /* Deselect all */
"r" = ( "selectWithFilter:", "#flags.flag = '\\Seen'" ); /* Selects all mail you've read. */
"u" = ( "selectWithFilter:", "#flags.flag !=[x] '\\Seen'" ); /* Selects all unread mail. */
"s" = ( "selectWithFilter:", "#flags.flag = '\\Flagged'" ); /* Selects all starred mail. */
"t" = ( "selectWithFilter:", "#flags.flag !=[x] '\\Flagged'" ); /* Selects all unstarred mail. */
};
/*
* Composing
*/
"@\U000A" = "send:"; // ⌘+return
"@\U000D" = "send:"; // ⌘+enter
/* ⌘. = advance to next window */
/* ⌘, = go to previous window */
/* ⌘⇧c = add cc recipients */
/* ⌘⇧b = add bcc recipients */
/* ⌘⇧f = change from address */
}