vmail 0.1.5 → 0.1.6

Sign up to get free protection for your applications and to get access to all the features.
@@ -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
- Starring a message copies it to the `starred` mailbox. Starred messages are
125
- marked with a `[*]` symbol and color-highlighted.
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.) Resume editing. Send by typing `,vs`.
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
 
@@ -727,6 +727,8 @@ endfunc
727
727
  func! s:compose_window_mappings()
728
728
  noremap <silent> <buffer> <leader>q :call <SID>cancel_compose()<cr>
729
729
  nmap <silent> <buffer> q <leader>q
730
+ setlocal ai
731
+ setlocal textwidth=72
730
732
  endfunc
731
733
 
732
734
  func! s:global_mappings()
@@ -1,3 +1,3 @@
1
1
  module Vmail
2
- VERSION = "0.1.5"
2
+ VERSION = "0.1.6"
3
3
  end
@@ -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?1292362191" media="screen" rel="stylesheet" type="text/css" />
7
- <link href="stylesheets-vmail/960.css?1292362191" media="screen" rel="stylesheet" type="text/css" />
8
- <link href="stylesheets-vmail/text.css?1292362191" media="screen" rel="stylesheet" type="text/css" />
9
- <link href="stylesheets-vmail/site.css?1292362191" media="screen" rel="stylesheet" type="text/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
- Starring a message copies it to the <code>starred</code> mailbox. Starred messages are
157
- marked with a <code>[*]</code> symbol and color-highlighted.</p>
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.) Resume editing. Send by typing <code>,vs</code>.</p>
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
 
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 1
8
- - 5
9
- version: 0.1.5
8
+ - 6
9
+ version: 0.1.6
10
10
  platform: ruby
11
11
  authors:
12
12
  - Daniel Choi