vmail 0.1.5 → 0.1.6
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.
- data/README.markdown +7 -4
- data/lib/vmail.vim +2 -0
- data/lib/vmail/version.rb +1 -1
- data/website/vmail.html +9 -7
- metadata +2 -2
data/README.markdown
CHANGED
|
@@ -121,8 +121,9 @@ To view the raw RFC822 version of a message, type `,R` while viewing the message
|
|
|
121
121
|
## Starring, deleting, archiving, marking spam
|
|
122
122
|
|
|
123
123
|
To star a message, put the cursor on it and type `,*` or alternatively `s`.
|
|
124
|
-
|
|
125
|
-
|
|
124
|
+
(Note that the comma before the * is part of the key sequence.) Starring a
|
|
125
|
+
message copies it to the `starred` mailbox. Starred messages are marked with a
|
|
126
|
+
`[*]` symbol and color-highlighted.
|
|
126
127
|
|
|
127
128
|
To delete a message, put the cursor on it and type `,#` or alternatively `,d`.
|
|
128
129
|
Deleting a message puts it in the `trash` mailbox. Deleting a message from the
|
|
@@ -168,7 +169,8 @@ message list, and type `,B`. You'll be prompted to select the target mailbox.
|
|
|
168
169
|
|
|
169
170
|
## Composing messages
|
|
170
171
|
|
|
171
|
-
To start writing a new a email message, type `,c`.
|
|
172
|
+
To start writing a new a email message, type `,c`. That's a comma followed by
|
|
173
|
+
the character 'c'.
|
|
172
174
|
|
|
173
175
|
To reply to a message, type `,r`.
|
|
174
176
|
|
|
@@ -219,7 +221,8 @@ in normal mode.
|
|
|
219
221
|
|
|
220
222
|
To resume writing the draft later, just type `:e my_draft_filename.txt` to load
|
|
221
223
|
the draft email into a buffer. (Use `:e!` if you're already in the message
|
|
222
|
-
composition window.
|
|
224
|
+
composition window. You can also use `:sp` if you want to open the draft email file in a
|
|
225
|
+
split window, etc.) Resume editing. Send by typing `,vs`.
|
|
223
226
|
|
|
224
227
|
At any point, you can quit the composition window by typing `q` in normal mode.
|
|
225
228
|
|
data/lib/vmail.vim
CHANGED
data/lib/vmail/version.rb
CHANGED
data/website/vmail.html
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
<head>
|
|
4
4
|
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
|
5
5
|
<title>Vmail</title>
|
|
6
|
-
<link href="stylesheets-vmail/reset.css?
|
|
7
|
-
<link href="stylesheets-vmail/960.css?
|
|
8
|
-
<link href="stylesheets-vmail/text.css?
|
|
9
|
-
<link href="stylesheets-vmail/site.css?
|
|
6
|
+
<link href="stylesheets-vmail/reset.css?1292363893" media="screen" rel="stylesheet" type="text/css" />
|
|
7
|
+
<link href="stylesheets-vmail/960.css?1292363893" media="screen" rel="stylesheet" type="text/css" />
|
|
8
|
+
<link href="stylesheets-vmail/text.css?1292363893" media="screen" rel="stylesheet" type="text/css" />
|
|
9
|
+
<link href="stylesheets-vmail/site.css?1292363893" media="screen" rel="stylesheet" type="text/css" />
|
|
10
10
|
<script type="text/javascript" src="http://w.sharethis.com/button/buttons.js"></script><script type="text/javascript">stLight.options({publisher:'8579b5f8-0860-4ea6-9ef1-6f0f58359a99'});</script>
|
|
11
11
|
<script type="text/javascript" src="lightbox2/js/prototype.js"></script>
|
|
12
12
|
<script type="text/javascript" src="lightbox2/js/scriptaculous.js?load=effects,builder"></script>
|
|
@@ -153,8 +153,9 @@ top of the list that looks something like this:</p>
|
|
|
153
153
|
<h2>Starring, deleting, archiving, marking spam</h2>
|
|
154
154
|
|
|
155
155
|
<p>To star a message, put the cursor on it and type <code>,*</code> or alternatively <code>s</code>.
|
|
156
|
-
|
|
157
|
-
|
|
156
|
+
(Note that the comma before the * is part of the key sequence.) Starring a
|
|
157
|
+
message copies it to the <code>starred</code> mailbox. Starred messages are marked with a
|
|
158
|
+
<code>[*]</code> symbol and color-highlighted.</p>
|
|
158
159
|
|
|
159
160
|
<p>To delete a message, put the cursor on it and type <code>,#</code> or alternatively <code>,d</code>.
|
|
160
161
|
Deleting a message puts it in the <code>trash</code> mailbox. Deleting a message from the
|
|
@@ -255,7 +256,8 @@ in normal mode.</p>
|
|
|
255
256
|
|
|
256
257
|
<p>To resume writing the draft later, just type <code>:e my_draft_filename.txt</code> to load
|
|
257
258
|
the draft email into a buffer. (Use <code>:e!</code> if you're already in the message
|
|
258
|
-
composition window.
|
|
259
|
+
composition window. You can also use <code>:sp</code> if you want to open the draft email file in a
|
|
260
|
+
split window, etc.) Resume editing. Send by typing <code>,vs</code>.</p>
|
|
259
261
|
|
|
260
262
|
<p>At any point, you can quit the composition window by typing <code>q</code> in normal mode.</p>
|
|
261
263
|
|