himalaya/vim/ftplugin/himalaya-msg-list.vim
2021-06-03 16:08:03 +02:00

21 lines
607 B
VimL

setlocal buftype=nofile
setlocal cursorline
setlocal nomodifiable
setlocal nowrap
call himalaya#shared#bindings#define([
\["n", "gm" , "mbox#change" ],
\["n", "gp" , "mbox#prev_page" ],
\["n", "gn" , "mbox#next_page" ],
\["n", "<cr>", "msg#read" ],
\["n", "gw" , "msg#write" ],
\["n", "gr" , "msg#reply" ],
\["n", "gR" , "msg#reply_all" ],
\["n", "gf" , "msg#forward" ],
\["n", "ga" , "msg#attachments"],
\["n", "gC" , "msg#copy" ],
\["n", "gM" , "msg#move" ],
\["n", "gD" , "msg#delete" ],
\["v", "gD" , "msg#delete" ],
\])