set concealcursor=c set synmaxcol=3000 " For long Chinese paragraphs " Fix minor issue with footnote, see https://github.com/vim-pandoc/vim-markdownfootnotes/issues/22 if exists(':FootnoteNumber') nnoremap ^^ :call markdownfootnotes#VimFootnotes('i') inoremap ^^ :call markdownfootnotes#VimFootnotes('i') imap @@ ReturnFromFootnote nmap @@ ReturnFromFootnote endif " Text objects for Markdown code blocks. xnoremap ic :call text_obj#MdCodeBlock('i') xnoremap ac :call text_obj#MdCodeBlock('a') onoremap ic :call text_obj#MdCodeBlock('i') onoremap ac :call text_obj#MdCodeBlock('a')