vim-rmarkdown
vim-rmarkdown copied to clipboard
Rmarkdown support for vim
when i install vim-rmarkdown and vim-markdown plugin, i found i only can fold text in Rmarkdown file can't fold text in markdown file
I don't see an option to open an issue so I'm writing it here. When I `:set ft=quarto`, it breaks the folding of ATX headings (those are the # for...
I installed the plugin following the instruction but got wierd folding (to one line when open it) and the highlight looks weird  My .vimrc: ``` Plugin 'vim-pandoc/vim-pandoc' Plugin 'vim-pandoc/vim-pandoc-syntax'...
If you give your R Markdown file the `.rmd` extension the filetype will be set as `rmd`, this plugin requires the `rmarkdown` filetype, which is given with a `.Rmd` extension....
Default filetype is **rmd** for that reason I added rmd before rmarkdown to fix compatibility issues with any other plugin uses the default. But I don't know if this plugin...
I guess that this way the plugin should be compatible with Windows OS. Files are opened with just its name, which is allowed for docx, pptx, pdf and html as...
Hi, I am using your plugin with both vim-pandoc and vim-pandoc-syntax as they are required but I can't compile the Rmarkdown documents into any format because I am working with...
**Issue:** Until now, omitting "OUTPUT_TYPE" has following behaviour: > If OUTPUT_TYPE is ommited, RMarkdown produces an html document. But I dislike this, because specifying the desired output format under ["output"](https://rmarkdown.rstudio.com/lesson-9.html)...
I have added this to my .vimrc to compile rmarkdown ```vim autocmd filetype rmd nnoremap :RMarkdownpdflatex_engine="pdflatex" ``` Which will render and open the pdf but the process is not disowned...