vmail 0.6.4 → 0.6.5
Sign up to get free protection for your applications and to get access to all the features.
- data/README.markdown +2 -2
- data/TODO +10 -0
- data/lib/vmail.vim +2 -2
- data/lib/vmail/version.rb +1 -1
- data/website/top.markdown +1 -1
- metadata +4 -3
data/README.markdown
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# vmail
|
2
2
|
|
3
|
-
vmail is a Vim interface to Gmail.
|
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.
|
data/lib/vmail.vim
CHANGED
@@ -635,8 +635,8 @@ func! s:maximize_window()
|
|
635
635
|
endfunc
|
636
636
|
|
637
637
|
func! s:open_href()
|
638
|
-
call search(
|
639
|
-
let href = matchstr(getline(line('.')), '
|
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
|
data/lib/vmail/version.rb
CHANGED
data/website/top.markdown
CHANGED
@@ -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
|
-
-
|
9
|
-
version: 0.6.
|
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-
|
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
|