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 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
 
@@ -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` before starting
433
- Vmail or put this command in your `~/.bash_profile`.
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 invoke Vmail
436
- will show Vmail's logging output while MacVim is running. To quit Vmail in
437
- MacVim mode, first quit the MacVim window running Vmail, and then press CTRL-c
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
 
@@ -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
 
@@ -1,3 +1,3 @@
1
1
  module Vmail
2
- VERSION = '2.1.7'
2
+ VERSION = '2.1.8'
3
3
  end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: vmail
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 2.1.7
5
+ version: 2.1.8
6
6
  platform: ruby
7
7
  authors:
8
8
  - Daniel Choi