vim-pandoc / vim-pandoc-syntax

pandoc markdown syntax, to be installed alongside vim-pandoc
MIT License
425 stars 61 forks source link

Error with vimtex and vim-pandoc-syntax #362

Closed listout closed 2 years ago

listout commented 2 years ago

When trying to open a pandoc flavored markdown file [pandoc.markdown] an Error detected while processing function is shown.

pandoc_error

Minimal vimrc

call plug#begin('~/.config/nvim/plugged')
Plug 'lervag/vimtex'
Plug 'vim-pandoc/vim-pandoc-syntax'
call plug#end()

augroup pandoc_syntax
    au! BufNewFile,BufFilePre,BufRead *.md set filetype=markdown.pandoc
augroup END

Reproduce the issue

vim -u init.vim test.md

Even tried with vim-plugs lazy loading feature, same issue.

alerque commented 2 years ago

Did you close this because you figured it out? What was the resolution?