vmail 1.5.8 → 1.5.9
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/README.markdown +5 -1
- data/lib/vmail.vim +3 -3
- data/lib/vmail/version.rb +1 -1
- metadata +3 -3
data/README.markdown
CHANGED
@@ -14,7 +14,11 @@ than in any web browser or GUI program.
|
|
14
14
|
* Ruby 1.9.0 or higher with SSL support compiled in (vmail is developed using Ruby 1.9.2)
|
15
15
|
* the `lynx` text-only-mode web browser is required to view HTML mail parts in vmail
|
16
16
|
|
17
|
-
|
17
|
+
To install Ruby 1.9.2, I recommend using the [RVM Version Manager][rvm].
|
18
|
+
|
19
|
+
[rvm]:http://rvm.beginrescueend.com
|
20
|
+
|
21
|
+
The current version of vmail assumes a Unix environment.
|
18
22
|
|
19
23
|
Your Gmail account should be [IMAP-enabled][gmailimap].
|
20
24
|
|
data/lib/vmail.vim
CHANGED
@@ -202,7 +202,7 @@ function! s:focus_message_window()
|
|
202
202
|
let winnr = bufwinnr(s:message_window_bufnr)
|
203
203
|
if winnr == -1
|
204
204
|
" create window
|
205
|
-
exec "
|
205
|
+
exec "rightbelow split " . s:message_bufname
|
206
206
|
else
|
207
207
|
exec winnr . "wincmd w"
|
208
208
|
endif
|
@@ -346,7 +346,7 @@ function! s:move_to_mailbox(copy) range
|
|
346
346
|
if !exists("s:mailboxes")
|
347
347
|
call s:get_mailbox_list()
|
348
348
|
endif
|
349
|
-
|
349
|
+
leftabove split MailboxSelect
|
350
350
|
setlocal buftype=nofile
|
351
351
|
setlocal noswapfile
|
352
352
|
setlocal modifiable
|
@@ -426,7 +426,7 @@ endfunction
|
|
426
426
|
|
427
427
|
function! s:mailbox_window()
|
428
428
|
call s:get_mailbox_list()
|
429
|
-
|
429
|
+
leftabove split MailboxSelect
|
430
430
|
setlocal buftype=nofile
|
431
431
|
setlocal noswapfile
|
432
432
|
setlocal modifiable
|
data/lib/vmail/version.rb
CHANGED
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 1
|
7
7
|
- 5
|
8
|
-
-
|
9
|
-
version: 1.5.
|
8
|
+
- 9
|
9
|
+
version: 1.5.9
|
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: 2011-02-
|
17
|
+
date: 2011-02-19 00:00:00 -05:00
|
18
18
|
default_executable:
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|