vmail 1.0.9 → 1.1.0
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 +1 -1
- data/lib/vmail.vim +1 -1
- data/lib/vmail/version.rb +1 -1
- metadata +2 -2
data/README.markdown
CHANGED
@@ -419,7 +419,7 @@ will show vmail's logging output while MacVim is running. To quit vmail in
|
|
419
419
|
MacVim mode, first quit the MacVim window running vmail, and then press CTRL-c
|
420
420
|
in the original terminal window to stop the vmail process.
|
421
421
|
|
422
|
-
There seems to be a bug in MacVim that prevent some the status line messages
|
422
|
+
There seems to be a bug in MacVim that prevent some of the status line messages
|
423
423
|
from becoming visible, but this is minor issue.
|
424
424
|
|
425
425
|
## vmail file byproducts
|
data/lib/vmail.vim
CHANGED
@@ -98,6 +98,7 @@ function! s:show_message(stay_in_message_list)
|
|
98
98
|
redrawstatus
|
99
99
|
let res = system(command)
|
100
100
|
call s:focus_message_window()
|
101
|
+
set modifiable
|
101
102
|
1,$delete
|
102
103
|
put =res
|
103
104
|
" critical: don't call execute 'normal \<cr>'
|
@@ -128,7 +129,6 @@ function! s:show_next_message()
|
|
128
129
|
endfunction
|
129
130
|
|
130
131
|
function! s:show_previous_message()
|
131
|
-
set lazyredraw " why doesn't this work? Keep it in anyway
|
132
132
|
let fullscreen = (bufwinnr(s:listbufnr) == -1) " we're in full screen message mode
|
133
133
|
if fullscreen
|
134
134
|
3split
|
data/lib/vmail/version.rb
CHANGED