Skip to content

Instantly share code, notes, and snippets.

@ArcCosine
Created October 24, 2017 11:19
Show Gist options
  • Save ArcCosine/7b3302ec92aa8f64b3044ba78832a8dd to your computer and use it in GitHub Desktop.
Save ArcCosine/7b3302ec92aa8f64b3044ba78832a8dd to your computer and use it in GitHub Desktop.
markdown_vimrc_sample
"for markdown
nnoremap \m :call DisplayMarkdown()<CR>
function! DisplayMarkdown()
!node ~/Dropbox/kindness_project/markdown-maker/markdown-maker.js "%" > /tmp/__markdown.html;
vert split /tmp/__markdown.html
call cursor(1,1)
endfunction
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment