Skip to content

Instantly share code, notes, and snippets.

@deepfryed
Created January 9, 2011 00:33
Show Gist options
  • Save deepfryed/771274 to your computer and use it in GitHub Desktop.
Save deepfryed/771274 to your computer and use it in GitHub Desktop.
gmail cheat sheet
Key | Action
------------------------------+--------------------------------------------
c | Compose
/ | Search
k | Move to newer conversation
j | Move to older conversation
n | Next message
p | Previous message
o or <Enter> | Open
u | Return to conversation list
e | Archive
m | Mute
x | Select conversation
s | Star a message or conversation
+ | Mark as important
- | Mark as unimportant
! | Report spam
r | Reply
a | Reply all
f | Forward
<Esc> | Escape from input field
<Ctrl> + s | Save draft
# | Delete
l | Label
v | Move to
<Shift> + i | Mark as read
<Shift> + u | Mark as unread
[ | Archive and previous
] | Archive and next
z | Undo
<Shift> + n | Update current conversation
q | Move cursor to chat search
y | Remove from Current View*
. | Show more actions
<Ctrl> + <Down arrow> | Opens options in Chat
? | Show keyboard shortcuts help
|
k | Move up a contact
j | Move down a contact
o or <Enter> | Open
u | Return to contact list view
e | Remove from Current Group
x | Select contact
<Esc> | Escape from input field
# | Deletes a contact permanently
l | Group membership
z | Undo
. | Show more actions
#!/usr/bin/ruby
# le nokogiri en 5 minute
require 'open-uri'
require 'nokogiri'
doc = Nokogiri::HTML(open("http://mail.google.com/support/bin/answer.py?hl=en&ctx=mail&answer=6594").read)
table = doc.css('table:first')
table.css('tr:first').remove
puts "%-26s | Action" % 'Key'
puts "%-26s----+----%s" % ['-'*26, '-'*40]
table.css('tr').each do |row|
key, info = row.css('th:first').text, row.css('td:first').text
puts "%-26s | %s" % [key.strip, info.strip]
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment