Bram Moolenaar | dd60c36 | 2023-02-27 15:49:53 +0000 | [diff] [blame] | 1 | " Language: Quarto (Markdown with chunks of R, Python and other languages) |
| 2 | " Provisory Maintainer: Jakson Aquino <jalvesaq@gmail.com> |
| 3 | " Homepage: https://github.com/jalvesaq/R-Vim-runtime |
| 4 | " Last Change: Fri Feb 24, 2023 08:26AM |
| 5 | " |
| 6 | " The developers of tools for Quarto maintain Vim runtime files in their |
| 7 | " Github repository and, if required, I will hand over the maintenance of |
| 8 | " this script for them. |
| 9 | |
| 10 | runtime syntax/rmd.vim |
| 11 | |
| 12 | syn match quartoShortarg /\S\+/ contained |
| 13 | syn keyword quartoShortkey var meta env pagebreak video include contained |
| 14 | syn region quartoShortcode matchgroup=PreProc start='{{< ' end=' >}}' contains=quartoShortkey,quartoShortarg transparent keepend |
| 15 | |
| 16 | hi def link quartoShortkey Include |
| 17 | hi def link quartoShortarg String |