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