lib/vmail.vim in vmail-1.5.0 vs lib/vmail.vim in vmail-1.5.1

- old
+ new

@@ -221,11 +221,11 @@ " gets new messages since last update function! s:update() let command = s:update_command - echo "Checking for new messages. please wait..." + echo "Checking for new messages. Please wait..." let res = system(command) if len(split(res, "\n", '')) > 0 setlocal modifiable let line = line('$') silent $put =res @@ -327,11 +327,11 @@ echom "Canceled" return endif let s:append_file = append_file let command = s:append_to_file_command . join(uid_set, ',') . ' ' . s:append_file - echo "Appending " . nummsgs . " message" . (nummsgs == 1 ? '' : 's') . " to " . s:append_file . ". please wait..." + echo "Appending " . nummsgs . " message" . (nummsgs == 1 ? '' : 's') . " to " . s:append_file . ". Please wait..." let res = system(command) echo res redraw endfunc @@ -475,11 +475,11 @@ endif let s:mailbox = mailbox let s:query = "100 all" let command = s:select_mailbox_command . shellescape(s:mailbox) redraw - echom "Selecting mailbox: ". s:mailbox . ". please wait..." + echom "Selecting mailbox: ". s:mailbox . ". Please wait..." call system(command) redraw " now get latest 100 messages call s:focus_list_window() setlocal modifiable @@ -515,11 +515,11 @@ close let command = s:search_command . shellescape(s:query) redraw call s:focus_list_window() setlocal modifiable - echo "Running query on " . s:mailbox . ": " . s:query . ". please wait..." + echo "Running query on " . s:mailbox . ": " . s:query . ". Please wait..." let res = system(command) silent! 1,$delete silent! put! =res execute "silent normal Gdd\<c-y>" setlocal nomodifiable @@ -529,10 +529,10 @@ function! s:more_messages() let line = getline(line('.')) let seqno = get(split(matchstr(line, '\d\+:\d\+$'), ':'), 0) let command = s:more_messages_command . seqno - echo "Fetching more messages. please wait..." + echo "Fetching more messages. Please wait..." let res = system(command) setlocal modifiable let lines = split(res, "\n") call append(0, lines) " execute "normal Gdd\<c-y>"