vmail 2.1.7 → 2.1.8
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/NOTES +5 -0
- data/README.markdown +8 -7
- data/lib/vmail.rb +2 -2
- data/lib/vmail/version.rb +1 -1
- metadata +1 -1
data/NOTES
CHANGED
|
@@ -24,4 +24,9 @@ TODO
|
|
|
24
24
|
No number number limit inbox 100. NOTE IN DOCUMENTATION
|
|
25
25
|
|
|
26
26
|
|
|
27
|
+
------------------------------------------------------------------------
|
|
28
|
+
Fri Jul 8 08:32:29 EDT 2011
|
|
29
|
+
|
|
30
|
+
I think I can fetch back emails while use is waiting via a background thread
|
|
31
|
+
|
|
27
32
|
|
data/README.markdown
CHANGED
|
@@ -427,15 +427,16 @@ Note: These features have been deprecated and will be migrated to a separate too
|
|
|
427
427
|
|
|
428
428
|
Typing `,?` will open this webpage in a browser.
|
|
429
429
|
|
|
430
|
-
## Using Vmail with MacVim
|
|
430
|
+
## Using Vmail with MacVim or gvim
|
|
431
431
|
|
|
432
|
-
To use MacVim as your Vmail Vim engine, `export VMAIL_VIM=mvim`
|
|
433
|
-
Vmail
|
|
432
|
+
To use MacVim as your Vmail Vim engine, run `export VMAIL_VIM=mvim` or `export
|
|
433
|
+
VMAIL_VIM=gvim` before starting Vmail. Or put this command in your
|
|
434
|
+
`~/.bash_profile`.
|
|
434
435
|
|
|
435
|
-
Note that when Vmail uses MacVim, the terminal window in which you
|
|
436
|
-
will show Vmail's logging output while MacVim is running. To quit
|
|
437
|
-
MacVim mode, first quit the MacVim window running Vmail, and then
|
|
438
|
-
in the original terminal window to stop the Vmail process.
|
|
436
|
+
Note that when Vmail uses MacVim or gvim, the terminal window in which you
|
|
437
|
+
invoke Vmail will show Vmail's logging output while MacVim is running. To quit
|
|
438
|
+
Vmail in MacVim mode, first quit the MacVim window running Vmail, and then
|
|
439
|
+
press CTRL-c in the original terminal window to stop the Vmail process.
|
|
439
440
|
|
|
440
441
|
## Vmail file byproducts
|
|
441
442
|
|
data/lib/vmail.rb
CHANGED
|
@@ -39,7 +39,7 @@ module Vmail
|
|
|
39
39
|
|
|
40
40
|
contacts_file = opts.contacts_file
|
|
41
41
|
|
|
42
|
-
logfile = (vim == 'mvim') ? STDERR : 'vmail.log'
|
|
42
|
+
logfile = (vim == 'mvim' || vim = 'gvim') ? STDERR : 'vmail.log'
|
|
43
43
|
config.merge! 'logfile' => logfile
|
|
44
44
|
|
|
45
45
|
puts "Starting vmail imap client for #{config['username']}"
|
|
@@ -74,7 +74,7 @@ module Vmail
|
|
|
74
74
|
|
|
75
75
|
system(vim_command)
|
|
76
76
|
|
|
77
|
-
if vim == 'mvim'
|
|
77
|
+
if vim == 'mvim' || vim == 'gvim'
|
|
78
78
|
DRb.thread.join
|
|
79
79
|
end
|
|
80
80
|
|
data/lib/vmail/version.rb
CHANGED