vmail 0.6.4 → 0.6.5

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.
@@ -1,6 +1,6 @@
1
1
  # vmail
2
2
 
3
- vmail is a Vim interface to Gmail. Here are some screenshots:
3
+ vmail is a Vim interface to Gmail.
4
4
 
5
5
  Why vmail? Because some people love using Vim 1000 times more than using
6
6
  a web browser or a GUI mail program.
@@ -246,7 +246,7 @@ split window, etc.) Resume editing. Send by typing `,vs`.
246
246
  At any point, you can quit the composition window by typing `q` in normal mode.
247
247
 
248
248
  You can also use `vmailsend` from the command line to send a message that
249
- you've compmosed with correct headers and saved to a file, like so.
249
+ you've compmosed with correct headers and saved to a file, like so:
250
250
 
251
251
  vmailsend < my_message.txt
252
252
 
data/TODO ADDED
@@ -0,0 +1,10 @@
1
+ ------------------------------------------------------------------------
2
+ Thu Dec 16 20:33:46 EST 2010
3
+
4
+ - when an action is taken on a message or range, double check to see
5
+ that internal message list is in sync with the one user is seeing.
6
+ maybe send over the subject line or something and make sure they
7
+ match.
8
+
9
+ - let vmailsend take an ARGV of filenames, so use can use globs, etc.
10
+ and send a bunch of emails at once.
@@ -635,8 +635,8 @@ func! s:maximize_window()
635
635
  endfunc
636
636
 
637
637
  func! s:open_href()
638
- call search("http:", 'c')
639
- let href = matchstr(getline(line('.')), 'http\S\+')
638
+ call search('https\?:', 'c')
639
+ let href = matchstr(getline(line('.')), 'https\?:\S\+')
640
640
  let command = s:browser_command . " '" . href . "'"
641
641
  call system(command)
642
642
  endfunc
@@ -1,3 +1,3 @@
1
1
  module Vmail
2
- VERSION = "0.6.4"
2
+ VERSION = "0.6.5"
3
3
  end
@@ -1,6 +1,6 @@
1
1
  # vmail
2
2
 
3
- vmail is a Vim interface to Gmail. Here are some screenshots:
3
+ vmail is a Vim interface to Gmail. Here are some (outdated) screenshots:
4
4
 
5
5
  <a href="images-vmail/1.png" rel="lightbox[screens]"><img src="images-vmail/1-small.png" /></a>
6
6
  <a href="images-vmail/autocomplete.png" rel="lightbox[screens]"><img src="images-vmail/autocomplete-small.png" /></a>
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 6
8
- - 4
9
- version: 0.6.4
8
+ - 5
9
+ version: 0.6.5
10
10
  platform: ruby
11
11
  authors:
12
12
  - Daniel Choi
@@ -14,7 +14,7 @@ autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2010-12-16 00:00:00 -05:00
17
+ date: 2010-12-17 00:00:00 -05:00
18
18
  default_executable:
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
@@ -64,6 +64,7 @@ files:
64
64
  - NOTES
65
65
  - README.markdown
66
66
  - Rakefile
67
+ - TODO
67
68
  - bin/vmail
68
69
  - bin/vmail_client
69
70
  - bin/vmailsend