himalaya/vim/ftplugin/himalaya-msg-list.vim
2021-04-03 12:12:26 +02:00

22 lines
616 B
VimL

setlocal buftype=nofile
setlocal cursorline
setlocal nomodifiable
setlocal nowrap
setlocal startofline
nnoremap <buffer><silent>q :bwipeout<cr>
nnoremap <buffer><silent><cr> :bwipeout<cr>
nnoremap <buffer><silent><esc> :bwipeout<cr>
call himalaya#shared#define_bindings([
\["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"],
\])