himalaya/vim/ftplugin/himalaya-msg-read.vim

18 lines
496 B
VimL
Raw Normal View History

2021-04-03 10:12:26 +00:00
setlocal bufhidden=wipe
setlocal buftype=nofile
setlocal filetype=mail
2021-04-04 12:25:55 +00:00
setlocal foldexpr=himalaya#shared#thread#fold(v:lnum)
2021-04-03 10:12:26 +00:00
setlocal foldmethod=expr
setlocal nomodifiable
2021-04-04 12:25:55 +00:00
call himalaya#shared#bindings#define([
\["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" ],
2021-04-03 10:12:26 +00:00
\])