mirror of
https://github.com/soywod/himalaya.git
synced 2024-11-23 03:20:20 +00:00
17 lines
483 B
VimL
17 lines
483 B
VimL
setlocal bufhidden=wipe
|
|
setlocal buftype=nofile
|
|
setlocal cursorline
|
|
setlocal nomodifiable
|
|
setlocal nowrap
|
|
|
|
call himalaya#shared#bindings#define([
|
|
\["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"],
|
|
\])
|