A vim plugin for Godown.
Godown.vim and Godown are both heavily inspired by Livedown.
The following commands are available
" launch the Godown server and preview your markdown
:GodownPreview
" stop the Godown server
:GodownKill
" Toggle the Godown server
:GodownToggle
" Live Preview
:GodownLiveToggle
" You can also add key bindings to preview your markdown
nmap <leader>md <Plug>(GodownLiveToggle)
The following are variables you can customize.
" should the preview be shown automatically when a markdown buffer is opened
let g:godown_autorun = 0
" the port to run the Godown server on
let g:godown_port = 1337
MIT