himalaya/vim/ftplugin/himalaya-msg-list.vim

18 lines
480 B
VimL
Raw Normal View History

2021-04-03 10:12:26 +00:00
setlocal buftype=nofile
setlocal cursorline
setlocal nomodifiable
setlocal nowrap
setlocal startofline
2021-04-04 12:25:55 +00:00
call himalaya#shared#bindings#define([
2021-04-03 10:12:26 +00:00
\["n", "gm" , "mbox#input" ],
\["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"],
\])