fix vim plugin empty mbox message (#136)

This commit is contained in:
Clément DOUIN
2021-05-03 23:34:16 +02:00
parent f74f0e3b68
commit 08f10266e3
3 changed files with 5 additions and 3 deletions
+1 -1
View File
@@ -38,7 +38,7 @@ function! himalaya#msg#list()
try
let mbox = himalaya#mbox#curr_mbox()
let page = himalaya#mbox#curr_page()
call himalaya#msg#list_with(mbox, page, 0)
call himalaya#msg#list_with(mbox, page, 1)
catch
if !empty(v:exception)
redraw | call himalaya#shared#log#err(v:exception)
+2 -2
View File
@@ -11,12 +11,12 @@ function! himalaya#shared#cli#call(cmd, args, log, should_throw)
redraw | call himalaya#shared#log#info(printf("%s [OK]", a:log))
return res.response
catch
redraw | call himalaya#shared#log#info(printf("%s [ERR]", a:log))
redraw
for line in split(res, "\n")
call himalaya#shared#log#err(line)
endfor
if a:should_throw
throw res
throw ""
endif
endtry
endif